Skip to content

Commit

Permalink
[tests] fix some tests after converting telemetry to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
flixr committed Oct 10, 2016
1 parent a97b6cd commit 522f97e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sw/airborne/test/subsystems/test_imu.c
Expand Up @@ -242,3 +242,9 @@ static void mag_cb(uint8_t sender_id __attribute__((unused)),
&imu.mag_unscaled.z);
}
}

void dl_parse_msg(struct link_device *dev __attribute__((unused)),
struct transport_tx *trans __attribute__((unused)),
uint8_t *buf __attribute__((unused)))
{
}
6 changes: 6 additions & 0 deletions sw/airborne/test/test_telemetry.c
Expand Up @@ -76,3 +76,9 @@ static inline void main_event(void)
{
mcu_event();
}

void dl_parse_msg(struct link_device *dev __attribute__((unused)),
struct transport_tx *trans __attribute__((unused)),
uint8_t *buf __attribute__((unused)))
{
}

0 comments on commit 522f97e

Please sign in to comment.