123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- #ifndef SER_APP_HAL_H_
- #define SER_APP_HAL_H_
- #include <stdint.h>
- #include <stdbool.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef void (*ser_app_hal_flash_op_done_handler_t)(bool success);
- uint32_t ser_app_hal_hw_init(ser_app_hal_flash_op_done_handler_t handler);
- void ser_app_hal_delay(uint32_t ms);
- void ser_app_hal_nrf_reset_pin_clear(void);
- void ser_app_hal_nrf_reset_pin_set(void);
- void ser_app_hal_nrf_evt_irq_priority_set(void);
- void ser_app_hal_nrf_evt_pending(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|