-
Content Count
2,126 -
Joined
-
Last visited
-
Days Won
140
Everything posted by Rei Vilo
-
Check there is no conflict between the BoosterPacks with https://dev.ti.com/bpchecker/.
-
You can try and edit the platform.txt file and set a different version for C and C++. However, this may rise conflicts with the default libraries, as they target an older version of C and C++. For more advanced use of the Energia SDK, I would recommend using Code Composer Studio.
-
Please read my answer at
- 1 reply
-
- msp432p4111
- cc3100boost
-
(and 2 more)
Tagged with:
-
The MSP432P4111 package doesn't include the libraries folder with the WiFi library. Create the directory ~/Users/ReiVilo/Library/Energia15/packages/energia/hardware/msp432p/5.29.0-beta1/libraries Copy the folder ~/Library/Energia15/packages/energia/hardware/msp432r/5.29.0/libraries/WiFi under ~/Users/ReiVilo/Library/Energia15/packages/energia/hardware/msp432p/5.29.0-beta1/libraries to obtain ~/Users/ReiVilo/Library/Energia15/packages/energia/hardware/msp432p/5.29.0-beta1/libraries/WiFi The paths mentioned above are for macOS. They might differ for Windows and Linux. Co
-
If you're using Energia for the MSP430, you can easily port it to chipKIT as both platforms are supported by the Arduino SDK. However, you should stick with high-level libraries like SPI and Wire instead of register-level commands. Please refer to Porting an Arduino library to Energia for some pointers.
- 2 replies
-
- pic16f18346
- msp430f2955
-
(and 1 more)
Tagged with:
-
You could try editing platform.txt again and changing compiler.c.elf.extra_flags="-L{runtime.tools.msp430-elf-gcc.path}/msp430-gcc-support-files/include" for compiler.c.elf.extra_flags="-L{runtime.tools.msp430-elf-gcc.path}/msp430-gcc-support-files/include" -Wl,--cref -Wl,--print-map
-
BME680 Adafruit sensor library for Energia CC3200 launchpad
Rei Vilo replied to Abdul400's topic in Energia - TivaC/CC3XXX
You could use a library designed for Arduino. See Porting an Arduino library to Energia- 1 reply
-
- bme680
- adafruit_bme680
-
(and 2 more)
Tagged with:
-
Have a look at this branch of the MSP430 with the Build instructions. It works great and allow to use the whole memory. Very useful with the 256 KB MSP430FR5994.
-
I tried various times to adapt and develop a library for the BMI160 + BMM150 sensors on Energia, alas without succeeding. The example included in the SAIL SDK works fine, although it is pure C and aimed at Code Composer Studio. https://www.ti.com/tool/download/SIMPLELINK-SDK-SENSOR-ACTUATOR-PLUGIN The documentation provided by Bosch is very poor and marred with errors. Should you need a ready-to-use IMU, I strongly recommend the Bosch BNO055, which includes an MCU and provides ready-to-read angles, quarternions and alike.
-
MSP430G2553 + SSD1306 OLED (I2C) + 5x8, 11x16, 16x24 and 24x36 fonts
Rei Vilo replied to DeepBlueSky's topic in Projects
I’ve developed the Master I²C Software Library. Please refer to the home page, the GitHub repository and the thread in this very forum.- 9 replies
-
- OLED
- MSP430G2553
-
(and 1 more)
Tagged with:
-
Which library?
-
It seems you’re using Windows: that is the standard behaviour.
-
MSP430G2553 + SSD1306 OLED (I2C) + 5x8, 11x16, 16x24 and 24x36 fonts
Rei Vilo replied to DeepBlueSky's topic in Projects
Check the I²C port selected, there are two and they differ from non-ET and ET LaunchPad boards.- 9 replies
-
- OLED
- MSP430G2553
-
(and 1 more)
Tagged with:
-
Error compiling for board MSP-EXP430F5529LP
Rei Vilo replied to AwaisFarooqi's topic in Energia - MSP
Please refer to Porting an Arduino library to Energia- 4 replies
-
- is not a class or namespace
- multiple library
-
(and 1 more)
Tagged with:
-
Could you please open a ticket at https://github.com/energia/EasyLink/issues? It seems some values are hard-coded, as noted at ETSI Frequency Hard-Coded — How to Comply with FCC?
-
Programming CC3220SF Energia code into Flash
Rei Vilo replied to Sam123's topic in Energia - TivaC/CC3XXX
You need to use the tool Uniflash. https://www.ti.com/tool/UNIFLASH There is a rather sophisticated set of features. Here is the User's Guide. http://www.ti.com/lit/ug/swru469g/swru469g.pdf -
You're welcome! ...and don't forget to remove the jumpers from the LaunchPad.
-
Just use the programming part of the CC3200 LaunchPad connected to your board.
-
BMP280 library for MSP430FR5969LP using CC/Energia
Rei Vilo replied to Jul10's topic in MSP Energia Libraries
You can use a library for Arduino and adapt it to the MSP430. Porting an Arduino library to Energia- 2 replies
-
- bmp280
- msp430fr5969
-
(and 3 more)
Tagged with:
-
Please have a look at Information to Provide When Asking for Help I²C Check-List I guess you're using the MMA8452 on I²C.
-
As Energia is a fork of Arduino, the same settings apply. Call the menu Energia > Preferences and select a larger font. Open the file theme.txt (located at /Applications/Energia.app/Contents/Java/lib/theme/theme.txt on macOS) and edit the corresponding settings. # foreground and background colors editor.fgcolor = #000000 editor.bgcolor = #ffffff Go for the preferences.txt file (located at ~/Library/Energia15/preferences.txt on macOS) and edit the corresponding settings.
-
Welcome to the 43oh forum!
-
GPS showing scrambled output on Serial monitor
Rei Vilo replied to LoveShadow's topic in Energia - MSP
Keep in mind the MSP430G2553 has only 512 bytes of RAM. It may not be enough for the buffers of two serial ports. Try with a more capable MCU.