diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-05-18 13:42:52 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2023-05-18 13:42:52 +0200 |
commit | 844aeaf0a685180633107e89b9d28023ae05bd78 (patch) | |
tree | 2cb00f749e37507b88ae40d7f11f6690764cb3b3 /tracker-stm32/README.md | |
parent | a574c239214a963bec1a2229c077af261130277c (diff) | |
download | lora-aprs-hb9egm-844aeaf0a685180633107e89b9d28023ae05bd78.tar.gz lora-aprs-hb9egm-844aeaf0a685180633107e89b9d28023ae05bd78.tar.bz2 lora-aprs-hb9egm-844aeaf0a685180633107e89b9d28023ae05bd78.zip |
Move tracker into subdira
Diffstat (limited to 'tracker-stm32/README.md')
-rw-r--r-- | tracker-stm32/README.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tracker-stm32/README.md b/tracker-stm32/README.md new file mode 100644 index 0000000..a2bda13 --- /dev/null +++ b/tracker-stm32/README.md @@ -0,0 +1,33 @@ +NUCLEO-H743ZI APRS-LoRa Tracker +=============================== + +Connect u-blox NEO-M8N (or other u-blox receiver) to USART-B (RX PD5 and TX PD6) and RFM96 to SPI A. + +See src/main.ino for definitions. + +Pinout +------ + +- u-blox NEO module connected to PD5 and PD6 +- RFM96 connected to SPI A: + - MISO (Arduino 12), MOSI (Arduino 11), SCK (Arduino 13) + - NSS pin: PD14 (Arduino 10) + - DIO0 pin: PF3 (Arduino 8) + - RESET pin: PF15 (Arduino 9) + +- SD Card connected to SPI B: + - MISO (Arduino 12), MOSI (Arduino 11), SCK (Arduino 13) + - CS (Arduino 17) + +Build +----- + +This project requires: https://platform.io + +Compile: + + pio run + +Program NUCLEO board: + + pio run -t upload |