-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
120 changed files
with
2,217 additions
and
5,809 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
5059c77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where to find the new LoRa MAC Specification version R3.0 PDF file?
5059c77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The LoRaMac specification is available on request. Please contact your local Semtech representative.
Best regards.
5059c77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have got two SK-iM880A boards and have been trying to get I2C or UART to work. No Success yet.
I took the "ping-pong" example and in case of UART changed the main.c file to this:
include "board.h"
int main( void ) {
}
I am using "Keil µVision 5.11.1.0" and the "Flash Loader Demonstrator" Tool by STM to program the devices. What am I doing wrong? Thanks in advance!
5059c77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to use the HW UART an Rx an Tx Fifo buffer must be defined before calling the UartConfig function.
For I2C there are some working examples on the other supported platforms. Please look at the LoRaMote platform as it is also based on the iM880A module
Please find below a working UART echo example:
5059c77
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you Mr. Luis. That did the trick. I have been able to transmit data via UART to the other board and to a PC. I will try to connect it to a Raspberry Pi soon, which is my final goal.