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 from Cortus #79

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2fcc1fa
cortus: add local crt0 with old toochain
pnunes30 May 24, 2018
7894992
cortus: fix warnings
pnunes30 Nov 29, 2019
cf0adad
cortus: starting Rx interrupt should be done with uart_rx_interrupt_e…
Sep 17, 2019
06a6da3
AT parser: extract signed value
pnunes30 Sep 13, 2019
f82c75b
AT_modem: add EIRP cmd
pnunes30 Sep 18, 2019
7f0065c
AT_modem: extend parser to support multiple field
pnunes30 Sep 19, 2019
9b719ce
AT_modem: code cleaning + fixes
pnunes30 Nov 29, 2019
536fdaa
AT_modem: add time option to repeat TX periodically
pnunes30 Nov 29, 2019
b587a53
AT_modem: seperate software and hardware encoding scheme
pnunes30 Nov 29, 2019
e249ae5
AT_modem: add newlib if the selected platform is cortus_fpga
Sep 19, 2019
8365559
AT_modem: add RXC command
pnunes30 Nov 29, 2019
58c3357
AT_modem: fixes
pnunes30 Nov 29, 2019
7722e7d
AT_modem: align RXBW with the D7A provisioning
pnunes30 Dec 23, 2019
587a907
netdev_driver: do not clear the refill TX option when switching in st…
pnunes30 Sep 10, 2019
12f4ebb
netdev_driver: Remove time critical traces
pnunes30 Sep 13, 2019
5fa8b7a
netdev_driver: fix uninitialised fsk configuration
pnunes30 Sep 13, 2019
08a1f06
netdev_driver: get/set power with signed values
pnunes30 Sep 13, 2019
c9b9473
netdev_driver: set the TX fifo threshold according the packet size
pnunes30 Oct 17, 2019
357d542
netdev_driver: support continuous RX
pnunes30 Nov 29, 2019
21828ff
netdev_driver: modifications after TX debug
Feb 21, 2019
20ec56e
netdev_driver: disable continuous RX
pnunes30 Dec 23, 2019
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
5 changes: 3 additions & 2 deletions stack/apps/AT_modem/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
#

#Add App specific linker flags
#Add newlib for this app
INSERT_LINKER_FLAGS(AFTER LINK_LIBRARIES INSERT "-fuse-clib=newlib")
IF(${PLATFORM} STREQUAL "cortus_fpga")
INSERT_LINKER_FLAGS(AFTER LINK_LIBRARIES INSERT "-fuse-clib=newlib")
ENDIF()

APP_BUILD(NAME ${APP_NAME} SOURCES at_modem.c at_parser.c LIBS d7ap framework)
Loading