Board: EK-TM4C1294XL (probably not relevant)
Started in CCS with TI-RTOS UART Echo example (worked)
Attempted adding a telnet server (NDK) instance (with console.c to test) using the UI and ran into several issues:
- In the config panel there was an alert (appearing again on build attempt)
ti.sysbios.knl.Task.Instance#1 priority: priority 5 must be less than Task.numPriorities (4)
Solved: Updated config to up the total number of priorities - Got an error about missing ti_ndk_config_Global_HostName
Solved: Added "var Global = xdc.useModule('ti.ndk.config.Global');" - Now the compiler is not able to find netmain.h (included by console.c)
Manually I can find this file in
tirtos_tivac_2_12_01_33/products/ndk_2_24_02_31/packages/ti/ndk/inc
But that path is not among the (two) passed to the compiler with "-I" flags
I suppose I can go and manually add that path to the project but if I went through all the eclipse GUI to add the instance - shouldn't that have taken care of ALL of these issues?
I'm obviously doing something wrong - what
Thanks