2020-09-01 10:34:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-08-24 15:31:22 +00:00
|
|
|
#ifdef __cplusplus
|
2020-08-07 06:58:20 +00:00
|
|
|
extern "C" {
|
2020-08-24 15:31:22 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-07 06:58:20 +00:00
|
|
|
#include "main.h"
|
2020-08-17 09:45:53 +00:00
|
|
|
#include "flipper_hal.h"
|
2020-08-07 06:58:20 +00:00
|
|
|
#include "cmsis_os.h"
|
2020-08-24 15:31:22 +00:00
|
|
|
#include "furi.h"
|
2020-09-01 10:34:23 +00:00
|
|
|
#include "log.h"
|
2020-08-24 15:31:22 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2020-08-07 06:58:20 +00:00
|
|
|
}
|
2020-08-24 15:31:22 +00:00
|
|
|
#endif
|
2020-08-07 06:58:20 +00:00
|
|
|
|
2020-08-17 09:45:53 +00:00
|
|
|
// Arduino defines
|
|
|
|
|
2020-08-07 06:58:20 +00:00
|
|
|
#define pinMode app_gpio_init
|
|
|
|
#define digitalWrite app_gpio_write
|
|
|
|
#define digitalRead app_gpio_read
|
|
|
|
#define EEMEM
|
|
|
|
#define delayMicroseconds delay_us
|
|
|
|
#define delay osDelay
|
|
|
|
#define byte uint8_t
|
|
|
|
|
|
|
|
#define OUTPUT GpioModeOutput
|
|
|
|
#define INPUT GpioModeInput
|
|
|
|
#define LOW false
|
|
|
|
#define HIGH true
|