Fix warning of nested extern declaration of fn get_sys_time_float (#3499)

This commit is contained in:
OpenUAS
2025-07-07 22:07:48 +02:00
committed by GitHub
parent 0d9a3a1402
commit 90a5f285c6
@@ -13,7 +13,7 @@
#include "modules/core/threads.h"
#include "modules/core/threads_arch.h"
#include "stdbool.h"
#include "mcu_periph/sys_time.h"
int pprz_mtx_init(pprz_mutex_t* mtx) {
(void)mtx;
@@ -36,8 +36,6 @@ int pprz_mtx_unlock(pprz_mutex_t* mtx) {
return 0;
}
void pprz_bsem_init(pprz_bsem_t* bsem, bool taken) {
bsem->value = taken ? 0: 1;
}