We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From @rei-vilo on December 21, 2016 9:10
The `MultiBlink example fails to compile against CC3200 EMT, but succeeds agains MSP432 EMT.
BLUE_LED
YELLOW_LED
Add
#define BLUE_LED YELLOW_LED
Linking everything together... "/Users/ReiVilo/Library/Energia15/packages/energia/tools/arm-none-eabi-gcc/4.8.4-20140725/bin/arm-none-eabi-g++" -mcpu=cortex-m4 -mthumb -nostartfiles -nostdlib -Os -Wl,--gc-sections "-T/Users/ReiVilo/Library/Energia15/packages/energia/hardware/cc3200emt/1.0.0/cores/cc3200/cc3200.ld" "-Wl,-Map,/var/folders/px/cyfvtr757lqg0yp_cv9j79jh0000gn/T/build63d44f843ff038a6bc73c3b80b8f85e0.tmp/MultiBlink.ino.map" -o "/var/folders/px/cyfvtr757lqg0yp_cv9j79jh0000gn/T/build63d44f843ff038a6bc73c3b80b8f85e0.tmp/MultiBlink.ino.elf" "-L/var/folders/px/cyfvtr757lqg0yp_cv9j79jh0000gn/T/build63d44f843ff038a6bc73c3b80b8f85e0.tmp" -Wl,--check-sections -Wl,--cref -Wl,--gc-sections -Wl,--entry=ResetISR -Wl,--unresolved-symbols=report-all -Wl,--warn-common -mthumb -mcpu=cortex-m4 -mfloat-abi=soft -mabi=aapcs -Wl,--start-group "/var/folders/px/cyfvtr757lqg0yp_cv9j79jh0000gn/T/build63d44f843ff038a6bc73c3b80b8f85e0.tmp/sketch/MultiBlink.ino.cpp.o" "/var/folders/px/cyfvtr757lqg0yp_cv9j79jh0000gn/T/build63d44f843ff038a6bc73c3b80b8f85e0.tmp/core/core.a" -Wl,--end-group "/Users/ReiVilo/Library/Energia15/packages/energia/hardware/cc3200emt/1.0.0/system/driverlib/libdriverlib.a" -lm -lc -lgcc /var/folders/px/cyfvtr757lqg0yp_cv9j79jh0000gn/T/build63d44f843ff038a6bc73c3b80b8f85e0.tmp/core/core.a(main.cpp.o): In function main': /Users/ReiVilo/Library/Energia15/packages/energia/hardware/cc3200emt/1.0.0/cores/cc3200/main.cpp:39: undefined reference to setup' /Users/ReiVilo/Library/Energia15/packages/energia/hardware/cc3200emt/1.0.0/cores/cc3200/main.cpp:42: undefined reference to `loop' collect2: error: ld returned 1 exit status exit status 1 Error compiling for board CC3200-LAUNCHXL EMT (80MHz).
main': /Users/ReiVilo/Library/Energia15/packages/energia/hardware/cc3200emt/1.0.0/cores/cc3200/main.cpp:39: undefined reference to
Copied from original issue: energia/cc3200-core#9
The text was updated successfully, but these errors were encountered:
From @rei-vilo on December 21, 2016 9:26
Adding empty setup() and loop() to the MultiBlink.ino file solved the case.
setup()
loop()
MultiBlink.ino
void setup() { } void loop() { }
It looks like the task parser doesn't behave the same way against the CC3200 and the MSP432.
Sorry, something went wrong.
This issue was caused by the package provided by the link for the beta, which pointed to the wrong package, actually the CC3200 standard boards.
This issue is solved with the right cc3200emt-core package.
This issue can be closed now. I don't have the credentials on this repository for closing it myself. Thank you.
No branches or pull requests
From @rei-vilo on December 21, 2016 9:10
The `MultiBlink example fails to compile against CC3200 EMT, but succeeds agains MSP432 EMT.
BLUE_LED
is unknown, should be replaced byYELLOW_LED
Add
Copied from original issue: energia/cc3200-core#9
The text was updated successfully, but these errors were encountered: