├── DRAPRS.cpp ├── DRAPRS.h ├── DRAPRSV1.zip ├── DRAPRSV2.zip ├── LiquidCrystal_I2C.zip ├── LiquidCrystal_SSD1306.zip ├── README.md ├── TNC_ID51.zip ├── ch341_hl-340.zip ├── config_direwolf ├── f4kmn │ ├── dw-start.sh │ ├── runsdr.sh │ └── sdr.conf ├── sdr │ ├── dw-start.sh │ └── runsdr.sh └── soundcard │ ├── direwolf.conf │ └── dw-start.sh ├── exemples ├── ID51_TNC │ └── ID51_TNC.ino ├── f4goh-9600.csv ├── tracker │ └── tracker.ino ├── trackerV1.1 │ └── trackerV1.1.ino ├── trackerV2 │ └── trackerV2.ino ├── trackerV31 │ └── trackerV31.ino ├── trackerV32 │ └── trackerV32.ino ├── trackerV33 │ └── trackerV33.ino └── trackerV5 │ ├── Afficheur.cpp │ ├── Afficheur.h │ ├── Ax25.cpp │ ├── Ax25.h │ ├── DRA818.cpp │ ├── DRA818.h │ ├── Dds.cpp │ ├── Dds.h │ ├── Fsk.cpp │ ├── Fsk.h │ ├── ParserNMEA.cpp │ ├── ParserNMEA.h │ ├── Position.cpp │ ├── Position.h │ ├── Smart.cpp │ ├── Smart.h │ └── trackerV5.ino ├── keywords.txt ├── mini-dra818V2.zip ├── prog sans compil V2.1.zip ├── tracker aprs.cfg └── trackerV33(pro mini 8mhz) not tested.hex /DRAPRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/DRAPRS.cpp -------------------------------------------------------------------------------- /DRAPRS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/DRAPRS.h -------------------------------------------------------------------------------- /DRAPRSV1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/DRAPRSV1.zip -------------------------------------------------------------------------------- /DRAPRSV2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/DRAPRSV2.zip -------------------------------------------------------------------------------- /LiquidCrystal_I2C.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/LiquidCrystal_I2C.zip -------------------------------------------------------------------------------- /LiquidCrystal_SSD1306.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/LiquidCrystal_SSD1306.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/README.md -------------------------------------------------------------------------------- /TNC_ID51.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/TNC_ID51.zip -------------------------------------------------------------------------------- /ch341_hl-340.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/ch341_hl-340.zip -------------------------------------------------------------------------------- /config_direwolf/f4kmn/dw-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/config_direwolf/f4kmn/dw-start.sh -------------------------------------------------------------------------------- /config_direwolf/f4kmn/runsdr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/config_direwolf/f4kmn/runsdr.sh -------------------------------------------------------------------------------- /config_direwolf/f4kmn/sdr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/config_direwolf/f4kmn/sdr.conf -------------------------------------------------------------------------------- /config_direwolf/sdr/dw-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/config_direwolf/sdr/dw-start.sh -------------------------------------------------------------------------------- /config_direwolf/sdr/runsdr.sh: -------------------------------------------------------------------------------- 1 | rtl_fm -f 144.80M - | direwolf -c sdr.conf -r 24000 -D 1 - 2 | 3 | 4 | -------------------------------------------------------------------------------- /config_direwolf/soundcard/direwolf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/config_direwolf/soundcard/direwolf.conf -------------------------------------------------------------------------------- /config_direwolf/soundcard/dw-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/config_direwolf/soundcard/dw-start.sh -------------------------------------------------------------------------------- /exemples/ID51_TNC/ID51_TNC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/ID51_TNC/ID51_TNC.ino -------------------------------------------------------------------------------- /exemples/f4goh-9600.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/f4goh-9600.csv -------------------------------------------------------------------------------- /exemples/tracker/tracker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/tracker/tracker.ino -------------------------------------------------------------------------------- /exemples/trackerV1.1/trackerV1.1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV1.1/trackerV1.1.ino -------------------------------------------------------------------------------- /exemples/trackerV2/trackerV2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV2/trackerV2.ino -------------------------------------------------------------------------------- /exemples/trackerV31/trackerV31.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV31/trackerV31.ino -------------------------------------------------------------------------------- /exemples/trackerV32/trackerV32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV32/trackerV32.ino -------------------------------------------------------------------------------- /exemples/trackerV33/trackerV33.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV33/trackerV33.ino -------------------------------------------------------------------------------- /exemples/trackerV5/Afficheur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Afficheur.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/Afficheur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Afficheur.h -------------------------------------------------------------------------------- /exemples/trackerV5/Ax25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Ax25.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/Ax25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Ax25.h -------------------------------------------------------------------------------- /exemples/trackerV5/DRA818.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/DRA818.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/DRA818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/DRA818.h -------------------------------------------------------------------------------- /exemples/trackerV5/Dds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Dds.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/Dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Dds.h -------------------------------------------------------------------------------- /exemples/trackerV5/Fsk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Fsk.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/Fsk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Fsk.h -------------------------------------------------------------------------------- /exemples/trackerV5/ParserNMEA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/ParserNMEA.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/ParserNMEA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/ParserNMEA.h -------------------------------------------------------------------------------- /exemples/trackerV5/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Position.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Position.h -------------------------------------------------------------------------------- /exemples/trackerV5/Smart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Smart.cpp -------------------------------------------------------------------------------- /exemples/trackerV5/Smart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/Smart.h -------------------------------------------------------------------------------- /exemples/trackerV5/trackerV5.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/exemples/trackerV5/trackerV5.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/keywords.txt -------------------------------------------------------------------------------- /mini-dra818V2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/mini-dra818V2.zip -------------------------------------------------------------------------------- /prog sans compil V2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/prog sans compil V2.1.zip -------------------------------------------------------------------------------- /tracker aprs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/tracker aprs.cfg -------------------------------------------------------------------------------- /trackerV33(pro mini 8mhz) not tested.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f4goh/DRAPRS/HEAD/trackerV33(pro mini 8mhz) not tested.hex --------------------------------------------------------------------------------