We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I would like to change the factory default parameters. Are these the default parameters in the "parameters.c" file ?
__code const struct parameter_info { const char *name; param_t default_value; } parameter_info[PARAM_MAX] = { {"FORMAT", PARAM_FORMAT_CURRENT}, {"SERIAL_SPEED", 57}, // match APM default of 57600 {"AIR_SPEED", 64}, // relies on MAVLink flow control {"NETID", 25}, {"TXPOWER", 20}, {"ECC", 0}, {"MAVLINK", 1}, {"OPPRESEND", 0}, {"MIN_FREQ", 0}, {"MAX_FREQ", 0}, {"NUM_CHANNELS", 0}, {"DUTY_CYCLE", 100}, {"LBT_RSSI", 0}, {"MANCHESTER", 0}, {"RTSCTS", 0}, {"MAX_WINDOW", 131}, #ifdef INCLUDE_AES {"ENCRYPTION_LEVEL", 0}, // no Enycryption (0), 128 or 256 bit key #endif };
The text was updated successfully, but these errors were encountered:
Yes you're right
Sorry, something went wrong.
No branches or pull requests
Hello,
I would like to change the factory default parameters. Are these the default parameters in the "parameters.c" file ?
__code const struct parameter_info {
const char *name;
param_t default_value;
} parameter_info[PARAM_MAX] = {
{"FORMAT", PARAM_FORMAT_CURRENT},
{"SERIAL_SPEED", 57}, // match APM default of 57600
{"AIR_SPEED", 64}, // relies on MAVLink flow control
{"NETID", 25},
{"TXPOWER", 20},
{"ECC", 0},
{"MAVLINK", 1},
{"OPPRESEND", 0},
{"MIN_FREQ", 0},
{"MAX_FREQ", 0},
{"NUM_CHANNELS", 0},
{"DUTY_CYCLE", 100},
{"LBT_RSSI", 0},
{"MANCHESTER", 0},
{"RTSCTS", 0},
{"MAX_WINDOW", 131},
#ifdef INCLUDE_AES
{"ENCRYPTION_LEVEL", 0}, // no Enycryption (0), 128 or 256 bit key
#endif
};
The text was updated successfully, but these errors were encountered: