RS41ng/src/hal/hal.h

14 wiersze
171 B
C

#ifndef __HAL_H
#define __HAL_H
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#define HAL_OK 0
#define HAL_ERROR -1
#define HAL_ERROR_TIMEOUT -2
#endif