mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 08:43:10 +00:00
27 lines
558 B
C
27 lines
558 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
#include <i2c.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void api_hal_i2c_init();
|
||
|
|
||
|
void api_hal_i2c_lock();
|
||
|
|
||
|
void api_hal_i2c_unlock();
|
||
|
|
||
|
#define with_api_hal_i2c(type, pointer, function_body) \
|
||
|
{ \
|
||
|
api_hal_i2c_lock(); \
|
||
|
*pointer = ({ type __fn__ function_body __fn__; })(); \
|
||
|
api_hal_i2c_unlock(); \
|
||
|
}
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|