Temporary fix to overcome syscalls.c link error

pull/4/head
bob 2018-07-17 17:42:13 +10:00
rodzic b363092805
commit 211ffb6558
3 zmienionych plików z 246 dodań i 242 usunięć

Wyświetl plik

@ -40,12 +40,14 @@ int main(void) {
* For now there is just one radio.
*/
while(!pktServiceCreate(PKT_RADIO_1)) {
TRACE_ERROR("MAIN > Unable to create packet radio services");
TRACE_ERROR("MAIN > Unable to create packet radio %d services",
PKT_RADIO_1);
chThdSleep(TIME_S2I(10));
}
pktEnableEventTrace(PKT_RADIO_1);
TRACE_INFO("MAIN > Started packet radio service for radio %d", PKT_RADIO_1);
TRACE_INFO("MAIN > Started packet radio service for radio %d",
PKT_RADIO_1);
TRACE_INFO("MAIN > Starting application and ancillary threads");

Wyświetl plik

@ -131,6 +131,7 @@ LDSCRIPT= $(CONFDIR)/STM32F413xH.ld
# setting.
CSRC = $(ALLCSRC) \
$(TESTSRC) \
$(CHIBIOS)/os/various/syscalls.c \
main.c \
# C++ sources that can be compiled in ARM or THUMB mode depending on the global

Wyświetl plik

@ -131,6 +131,7 @@ LDSCRIPT= $(CONFDIR)/STM32F413xH.ld
# setting.
CSRC = $(ALLCSRC) \
$(TESTSRC) \
$(CHIBIOS)/os/various/syscalls.c \
main.c \
# C++ sources that can be compiled in ARM or THUMB mode depending on the global