Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
7 years, 5 months ago.
Is there any sample code available for MAX3263X EV KIT REV 2.0
Hi,
I have MAX3263X EV KIT REV 2.0 development kit. Wondering if there is any sample code available for that? or how to start with mbed doc available? Thanks in advance.
1 Answer
7 years, 5 months ago.
Hi Suraj,
If you look at the mbed-os SDK, you can see it is supported.
https://github.com/ARMmbed/mbed-os/tree/master/targets/TARGET_Maxim.
This isn't in online compiler yet, so will need to use mbed CLI offline option.
It is located here. https://github.com/ARMmbed/mbed-cli
After installing CLI The commands would look something like this to download a blinky example using lpc1768.
- $ cd "TO DESIRED DIRECTORY"
- $ mbed import https://developer.mbed.org/teams/mbed-os-examples/code/mbed-os-example-blinky/
- $ cd "TO NEW CREATED FOLDER"
- $ mbed deploy
- $ mbed compile -t GCC_ARM -m lpc1768
You have now compiled the program, to export follow below
- $ mbed export -i uvision5 -m lpc1768
You can also export tor GCC if you need to, shown in the documentation .
If you need anything else, let me know
Regards,
Andrea, team mbed