Initial fork from MicroAPRS. Moved hardware definitions to m1284p. Implemented basic rx.

This commit is contained in:
Mark Qvist 2018-12-27 20:24:21 +01:00
parent d03564928b
commit 3fb4c30604
16 changed files with 109 additions and 4574 deletions

View file

@ -1,5 +1,5 @@
#define PROTOCOL_KISS 0x01
#define PROTOCOL_SIMPLE_SERIAL 0x02
#define PROTOCOL_RAW 0x02
#define m328p 0x01
#define m1284p 0x02

View file

@ -5,7 +5,7 @@
#include "device.h"
#define DIV_ROUND(dividend, divisor) (((dividend) + (divisor) / 2) / (divisor))
#define CLOCK_TICKS_PER_SEC CONFIG_AFSK_DAC_SAMPLERATE
#define CLOCK_TICKS_PER_SEC CONFIG_SAMPLERATE
typedef int32_t ticks_t;
typedef int32_t mtime_t;