├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── config.h ├── device.h ├── documentation └── Hardware Schematic.pdf ├── flash ├── hardware ├── AFSK.c ├── AFSK.h ├── Serial.c └── Serial.h ├── images └── .keepdir ├── main.c ├── precompiled ├── microaprs-3v-kiss-latest.hex ├── microaprs-3v-ss-latest.hex ├── microaprs-5v-kiss-latest.hex └── microaprs-5v-ss-latest.hex ├── protocol ├── AX25.c ├── AX25.h ├── HDLC.h ├── KISS.c ├── KISS.h ├── SimpleSerial.c └── SimpleSerial.h └── util ├── CRC-CCIT.c ├── CRC-CCIT.h ├── FIFO.h ├── constants.h └── time.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/config.h -------------------------------------------------------------------------------- /device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/device.h -------------------------------------------------------------------------------- /documentation/Hardware Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/documentation/Hardware Schematic.pdf -------------------------------------------------------------------------------- /flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/flash -------------------------------------------------------------------------------- /hardware/AFSK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/hardware/AFSK.c -------------------------------------------------------------------------------- /hardware/AFSK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/hardware/AFSK.h -------------------------------------------------------------------------------- /hardware/Serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/hardware/Serial.c -------------------------------------------------------------------------------- /hardware/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/hardware/Serial.h -------------------------------------------------------------------------------- /images/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/main.c -------------------------------------------------------------------------------- /precompiled/microaprs-3v-kiss-latest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/precompiled/microaprs-3v-kiss-latest.hex -------------------------------------------------------------------------------- /precompiled/microaprs-3v-ss-latest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/precompiled/microaprs-3v-ss-latest.hex -------------------------------------------------------------------------------- /precompiled/microaprs-5v-kiss-latest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/precompiled/microaprs-5v-kiss-latest.hex -------------------------------------------------------------------------------- /precompiled/microaprs-5v-ss-latest.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/precompiled/microaprs-5v-ss-latest.hex -------------------------------------------------------------------------------- /protocol/AX25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/protocol/AX25.c -------------------------------------------------------------------------------- /protocol/AX25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/protocol/AX25.h -------------------------------------------------------------------------------- /protocol/HDLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/protocol/HDLC.h -------------------------------------------------------------------------------- /protocol/KISS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/protocol/KISS.c -------------------------------------------------------------------------------- /protocol/KISS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/protocol/KISS.h -------------------------------------------------------------------------------- /protocol/SimpleSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/protocol/SimpleSerial.c -------------------------------------------------------------------------------- /protocol/SimpleSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/protocol/SimpleSerial.h -------------------------------------------------------------------------------- /util/CRC-CCIT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/util/CRC-CCIT.c -------------------------------------------------------------------------------- /util/CRC-CCIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/util/CRC-CCIT.h -------------------------------------------------------------------------------- /util/FIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/util/FIFO.h -------------------------------------------------------------------------------- /util/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/util/constants.h -------------------------------------------------------------------------------- /util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markqvist/MicroAPRS/HEAD/util/time.h --------------------------------------------------------------------------------