-
Content Count
2,127 -
Joined
-
Last visited
-
Days Won
140
Everything posted by Rei Vilo
-
Check Add a New Board to Energia
-
Quectel MC60 GSM libraries for MSP430FR6989
Rei Vilo replied to venkatesh223's topic in Energia - MSP
Search for Quectel MC60 Arduino library Porting an Arduino library to Energia -
Tiva C and 43Oh SD booster pack
Rei Vilo replied to jpitz31's topic in Tiva-C, Hercules, CC3XXX Launchpad Booster Packs
Check with the official BoosterPack Checker. -
MSP430FR6989 FRAM example code for energia
Rei Vilo replied to venkatesh223's topic in Energia - MSP
FRAM is used just like RAM. See energia/msp430-lg-core#31 -
Changing address space of .bss section for CC3200
Rei Vilo replied to dcjw's topic in Compilers and IDEs
The only change I made on the cc3200.ld was to modify the heap size. You can find more information at the §3 Linker Scripts of The GNU linker. Alternatively, Have a look at the linker scripts provided by CCS Post your question at the E2E forum, for example CC3200MODLAUNCHXL: How to handle the stack and CC3200MOD Bottom 16 KB SRAM usable? -
@juraPCEU Edit lines msp432e-core/cores/msp432e/ti/runtime/wiring/msp432e/wiring.c Line 105 in be5c1c2 and msp432e-core/cores/msp432e/ti/runtime/wiring/msp432e/wiring.c Line 111 in be5c1c2 and replace asm(" nop"); by __asm(" nop");.
-
Have a look at SensorsWeather_Library
-
Changing address space of .bss section for CC3200
Rei Vilo replied to dcjw's topic in Compilers and IDEs
The script is a text file located at ~/Library/Energia15/packages/energia/hardware/cc3200/1.0.3/cores/cc3200/cc3200.ld on macOS. -
Connecting CC3220SF to cayenne MQTT using energia
Rei Vilo replied to saokath's topic in Energia - TivaC/CC3XXX
Yes. However, the WiFi library has changed: use WiFiMKII instead of WiFi. -
Import an image on the display Kentec 3.5 with Energia
Rei Vilo replied to poulichp's topic in Energia - MSP
You may need to compare the two generated C-arrays and check they are identical.- 7 replies
-
- image
- kentec 3.5
-
(and 1 more)
Tagged with:
-
Changing address space of .bss section for CC3200
Rei Vilo replied to dcjw's topic in Compilers and IDEs
I'm afraid not. You may need to edit the linker script manually. -
Need to run TI CC3220SF Launchpad from flash
Rei Vilo replied to rppolicy's topic in Energia - TivaC/CC3XXX
See https://github.com/energia/cc3200-core/issues/32. -
Changing address space of .bss section for CC3200
Rei Vilo replied to dcjw's topic in Compilers and IDEs
It depends on the version of the board, Rev. A or Rev. B. Please refer to http://www.ti.com/ and http://e2e.ti.com/ for more information. -
Changing address space of .bss section for CC3200
Rei Vilo replied to dcjw's topic in Compilers and IDEs
The Flash is external. Program and data must fit into the 256 kB RAM of the CC3200. -
128x64 Graphical lcd display interface with MSP432 or 430
Rei Vilo replied to venkatesh223's topic in Energia - MSP
Have you checked Porting an Arduino library to Energia -
Two answers: Netiquette for Newbies MSP432 Black suddenly gone from Energia
-
If you want to use one single IDE for all the different boards, try Visual Micro (Windows only), embedXcode (macOS only), PlatformIO (Windows + macOS + Linux). All come as freemium: free for basic features; one-time-fee or subscription for more advanced features.
-
No, it is not possible as the Energia IDE includes specific features to support the multi-treading of the MSP432. The black MSP432 is deprecated and no longer supported.
-
MSP430FR6989 onboard LCD drivers for Energia
Rei Vilo replied to venkatesh223's topic in Energia - MSP
Check the menu Files > Examples > LCD_LaunchPad. -
Try delayMicroseconds().
-
Since all the code of the Energia SDK is open source, you can dive into the files to analyse the initialisation routine. Similarly, you can use a debugger to check the executable, the assembler and the registers.
-
You're welcome. Don't forget to initialise the SD object with the correct PIN number for the SPI /CS signal. In my case, I'm using pin 10. pinMode(10, OUTPUT); if (!SD.begin(10)) { Serial.println("initialization failed!"); return; } Serial.println("initialization done.");
- 15 replies
-
- sdcard msp432p401r
- sdcard
-
(and 1 more)
Tagged with:
-
The SD_TM4C library worked out of the box. Configuration: LaunchPad: MSP432P401R red Energia: 1.8.7E21 Boards package: Energia MSP432 EMT 5.23.1 SD card: Kingston 8 GB formatted in MS-DOS (FAT32).
- 15 replies
-
- sdcard msp432p401r
- sdcard
-
(and 1 more)
Tagged with:
-
Which board are you using? Have you had a look at the pins maps on the Energia website? On the MSP430G2553, the I²C port has migrated from pins 14/15 to pins 9/10.
-
Have you tried the SD_TM4C library?
- 15 replies
-
- sdcard msp432p401r
- sdcard
-
(and 1 more)
Tagged with: