The K3772 works yes.
You should see outputs on tera term as long as the baud rate is correct. Which for this program I set it to 115200.
Can you enable debugging in VodafoneUSBModem.cpp? At the top of this file please change
to
Also it is worth changing in main.cpp
// construct modem object
VodafoneUSBModem modem;
to
DBG("Constructing VodafoneUSBModem");
// construct modem object
VodafoneUSBModem modem;
DBG("Constructed VodafoneUSBModem");
So you understand when that is finished.
Let me know if this produces output.
You should be able to change from the 11U24 to the 1768 as long as you change the compiler target. I'm not sure how it works behind the scenes, but you might want to force a "build all" just in case any object files are left around.
Ashley
Hi everyone.
Can anyone help with a problem i'm having with the sample programs which can be imported straight from the mbed website. When I import the SMS test program it comes up the an error. I then compile the program and it throws up another error. I click fix and it asks to select a library to be imported (i'm assuming because its out of date?) I cannot select the top one because it says it already exists so I try the one below it and it then compiles. But when running it it gives an error to do with 'cmsis_os.h'. I have no idea how to get it running. Due to the program using many libraries and a lot of code I do not know where to start.
Can someone help please?? I've put some images below of the errors.
Thanks in advance.
Rob