Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Nucleo-64 Known limitations to avoid any confusion #11

Merged
merged 1 commit into from
Apr 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,12 @@ as a simple LoRa® radio module.
Those pins are connected to STLink USART thanks to SB13, SB14.

To use the shield:
- Connect shield D0(Tx) to PC11(Rx)
- Connect shield D1(Rx) to PC10(Tx)
- Connect shield D0(Tx) to a free U(S)ARTn Rx pin
- Connect shield D1(Rx) to a free U(S)ARTn Tx pin

Where 'n' are the same U(S)ART number.

- Update the Serial instance definition used for LoRa using the chosen Rx/Tx

or

Expand Down
7 changes: 5 additions & 2 deletions examples/BridgeSerial/BridgeSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@
Those pins are connected to STLink USART thanks to SB13, SB14.

To use the shield:
- Connect shield D0(Tx) to PC11(Rx)
- Connect shield D1(Rx) to PC10(Tx)
- Connect shield D0(Tx) to a free U(S)ARTn Rx pin
- Connect shield D1(Rx) to a free U(S)ARTn Tx pin
Where 'n' are the same U(S)ART number
- Update the below 'SerialLora' instance definition using the chosen Rx/Tx

or
- Close SB62 and SB63 to connect D0/D1 of CN9 connector to PA3 and PA2
- Open SB13 and SB14 to disconnect PA3 and PA2 from STLink UART
Expand Down
1 change: 1 addition & 0 deletions examples/getInfo/getInfo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

// Serial port use to communicate with the USI shield.
// By default, use D0 (Rx) and D1(Tx).
// For Nucleo64, see "Known limitations" chapter in the README.md
HardwareSerial SerialLora(D0, D1);

void setup()
Expand Down