2020-02-23 12:44:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <timers.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#include <nrfx_gpiote.h>
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
void nrfx_gpiote_evt_handler(nrfx_gpiote_pin_t pin, nrf_gpiote_polarity_t action);
|
2023-03-26 12:53:34 +00:00
|
|
|
void DebounceTimerCallback(TimerHandle_t xTimer);
|
|
|
|
|
|
|
|
extern int mallocFailedCount;
|
|
|
|
extern int stackOverflowCount;
|