Search the Community
Showing results for tags 'lauchpad'.
-
Hi, I have a CC2530 by Anaren. I have successfully loaded the demo program on my MSP430G2553 from IAR Workbench. Is there any way to convert the code to Energia? I have to move the environment to Energia since the main program is already written in Energia. I have tried to convert the main code in Energia to IAR, but no luck. I have been searching the forums, too. There only exists demo code for CC110L. By the way, if you think that converting from Energia to IAR is way much easier than the other way round, here is my Energia code (this includes 8x8 LED Booster Pack by Olimex): #inclu
-
I'm trying to port the usb_host_msc example to the Tiva Launchpad (EK-TM4C123GXL). I've been struggling with setting up the paths/build variables correctly. Ever since I introduced a function that uses the third part FatFs library. #10010 errors encountered during linking; "usb_host_mass_storage.out" not built usb_host_mass_storage C/C++ Problem unresolved symbols remain usb_host_mass_storage C/C++ Problem unresolved symbol f_mount, first referenced in ./main.obj usb_host_mass_storage C/C++ Problem I've double-checked the project properties several times, but i'm unable to deter
-
hi there, i'm trying to measure impedance by applying sinusoidal wave to a chemical gel. it cannot operate by dc voltages. i can achieve to measure resistance from a dc circuit and send the solution to an LCD screen by reading two channels as follows: my code: #include <LiquidCrystal.h> LiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { // set up the LCD's number of columns and rows: lcd.begin(16, 2); lcd.print("impedance :"); } void loop() { int sensorValue1 = analogRead(A0); int sensorValue2=analogRead(A1); // Convert the analog reading (which goe
- 1 reply
-
- sinus
- peak detection
-
(and 4 more)
Tagged with:
-
Hi everybody again, now i need all the comunity to help me... i need to read a single pin on my launchpad and plot those information in matlab, somebody can help me to do this?? i read in arduino playground a piece of code to call analogread() from matlab, with lauchpad its the same or what can i do to do this?