mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-30 13:43:12 +00:00
system/uorb: Support frequency less than 1hz
Signed-off-by: dongjiuzhu1 <dongjiuzhu1@xiaomi.com>
This commit is contained in:
parent
7b066ed0d8
commit
78590a55ea
1 changed files with 7 additions and 7 deletions
|
|
@ -70,8 +70,8 @@ static int listener_generate_object_list(FAR struct list_node *objlist,
|
|||
FAR const char *filter);
|
||||
static int listener_print(FAR const struct orb_metadata *meta, int fd);
|
||||
static void listener_monitor(FAR struct list_node *objlist, int nb_objects,
|
||||
int topic_rate, int topic_latency, int nb_msgs,
|
||||
int timeout);
|
||||
float topic_rate, int topic_latency,
|
||||
int nb_msgs, int timeout);
|
||||
static int listener_update(FAR struct list_node *objlist,
|
||||
FAR struct orb_object *object);
|
||||
static void listener_top(FAR struct list_node *objlist,
|
||||
|
|
@ -492,12 +492,12 @@ static int listener_print(FAR const struct orb_metadata *meta, int fd)
|
|||
****************************************************************************/
|
||||
|
||||
static void listener_monitor(FAR struct list_node *objlist, int nb_objects,
|
||||
int topic_rate, int topic_latency, int nb_msgs,
|
||||
int timeout)
|
||||
float topic_rate, int topic_latency,
|
||||
int nb_msgs, int timeout)
|
||||
{
|
||||
FAR struct pollfd *fds;
|
||||
FAR int *recv_msgs;
|
||||
int interval = topic_rate ? 1000000 / topic_rate : 0;
|
||||
int interval = topic_rate ? (int)(1000000 / topic_rate) : 0;
|
||||
int nb_recv_msgs = 0;
|
||||
int i = 0;
|
||||
|
||||
|
|
@ -706,7 +706,7 @@ int main(int argc, FAR char *argv[])
|
|||
{
|
||||
struct list_node objlist;
|
||||
FAR struct listen_object_s *tmp;
|
||||
int topic_rate = 0;
|
||||
float topic_rate = 0;
|
||||
int topic_latency = 0;
|
||||
int nb_msgs = 0;
|
||||
int timeout = 5;
|
||||
|
|
@ -729,7 +729,7 @@ int main(int argc, FAR char *argv[])
|
|||
switch (ch)
|
||||
{
|
||||
case 'r':
|
||||
topic_rate = strtol(optarg, NULL, 0);
|
||||
topic_rate = atof(optarg);
|
||||
if (topic_rate < 0)
|
||||
{
|
||||
goto error;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue