mirror of
https://github.com/OpenEPaperLink/OpenEPaperLink.git
synced 2026-03-21 00:04:28 +01:00
23 lines
226 B
C
23 lines
226 B
C
#ifndef _RADIO_H_
|
|
#define _RADIO_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
|
|
void RF_IRQ1(void) __interrupt (4);
|
|
void RF_IRQ2(void) __interrupt (5);
|
|
#define RADIO_PAD_LEN_BY 2
|
|
|
|
#include "../radioCommon.h"
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|