Compare commits

...

2 Commits

Author SHA1 Message Date
ebc7ad4235 Fix compilation warning in task module 2024-08-04 20:18:45 +02:00
bc4bab4704 Fix include issue in afio module 2024-08-04 20:17:52 +02:00
2 changed files with 2 additions and 4 deletions

View File

@ -9,10 +9,8 @@
//--includes--------------------------------------------------------------------
#include "stdint.h"
#include "stdbool.h"
#include "exti.h"
#include "gpio.h"
//--type definitions------------------------------------------------------------

View File

@ -84,7 +84,7 @@ struct Task {
*/
#define TASK_ENTRY \
_TASK_COUNT_INIT; \
(void*) __task_time; \
(void) __task_time; \
switch (__task_state->count) {
/**