mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-23 14:47:44 +08:00
fix logger: sscanf was used wrong for custom topics file
using scanf with %s reads until the first whitespace, which included the comma (as per C standard and tested on linux). Behavior on NuttX differs. This makes it work on both Linux and Nuttx.
This commit is contained in:
@@ -581,7 +581,6 @@ int Logger::add_topics_from_file(const char *fname)
|
||||
}
|
||||
|
||||
/* call add_topic for each topic line in the file */
|
||||
// format is TOPIC_NAME, [interval]
|
||||
for (;;) {
|
||||
|
||||
/* get a line, bail on error/EOF */
|
||||
@@ -596,14 +595,24 @@ int Logger::add_topics_from_file(const char *fname)
|
||||
continue;
|
||||
}
|
||||
|
||||
// default interval to zero
|
||||
// read line with format: <topic_name>[, <interval>]
|
||||
interval = 0;
|
||||
int nfields = sscanf(line, "%s, %u", topic_name, &interval);
|
||||
int nfields = sscanf(line, "%s %u", topic_name, &interval);
|
||||
|
||||
if (nfields > 0) {
|
||||
int name_len = strlen(topic_name);
|
||||
|
||||
if (name_len > 0 && topic_name[name_len - 1] == ',') {
|
||||
topic_name[name_len - 1] = '\0';
|
||||
}
|
||||
|
||||
/* add topic with specified interval */
|
||||
add_topic(topic_name, interval);
|
||||
ntopics++;
|
||||
if (add_topic(topic_name, interval) >= 0) {
|
||||
ntopics++;
|
||||
|
||||
} else {
|
||||
PX4_ERR("Failed to add topic %s", topic_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ public:
|
||||
* (because it does not write an ADD_LOGGED_MSG message).
|
||||
* @param name topic name
|
||||
* @param interval limit rate if >0, otherwise log as fast as the topic is updated.
|
||||
* @return 0 on success
|
||||
* @return -1 on error, file descriptor otherwise
|
||||
*/
|
||||
int add_topic(const char *name, unsigned interval);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user