element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Smart Security and Surveillance
  • Challenges & Projects
  • Design Challenges
  • Smart Security and Surveillance
  • More
  • Cancel
Smart Security and Surveillance
Forum Forum#2 - MAX32630FTHR Development Environments - Adaptive Sentinel: Security Intelligence & Surveillance Hub
  • News
  • Projects
  • Forum
  • DC
  • Leaderboard
  • Files
  • Members
  • More
  • Cancel
  • New
Join Smart Security and Surveillance to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 4 replies
  • Subscribers 46 subscribers
  • Views 223 views
  • Users 0 members are here
  • MAX32625PICO
  • security-challenge
  • arduino ide
  • mbed os
  • PlatformIO (VS Code)
  • MAX32630FTHR#
Related

Forum#2 - MAX32630FTHR Development Environments - Adaptive Sentinel: Security Intelligence & Surveillance Hub

skruglewicz
skruglewicz 1 month ago

Hey everyone! 

I received the Sponsored Challenger Kit on Wednesday April 9, 2026.  I unboxed the kit and took inventory of the contents. Everything was there, including some neat stickers from Element14. Unboxing other evaluation kits, I’m refered to some sort of “getting started” path to become familiar with the device. I did not find one in the MAX32630FTHR package?Since I never experimented with it, I decided to do some research to try and figure out what to do with this thing. 

I noticed some confusing labels on the Analog Devices product page—specifically that this board is "Not Recommended for New Designs" (NRND). What I surmise is it just means ADI isn't pushing it for mass-market commercial products anymore. Turns out, the MAX32630FTHR is an older generation chip. While it’s reliable, ADI has moved their focus to newer chips like the MAX32650 and the MAX78000 (AI-focused) series which are supported by the modern MSDK. For us hackers and makers, it’s still a powerhouse with a great FeatherWing form factor right.

OK Fine.. then I stumbled onto the Arm Mbed OS website MAX32630FTHR | Mbed and I see Mbed is reaching “End of Life” in July of this year 2026, plastered on this page and all over the website. Apparently, Mbed OS is being phased out in favor of newer IoT frameworks, making it a "legacy" choice for this board. 

Ok, now I’m beginning to wonder how the heck to program this thing. I hear you can use the Arduino IDE from fellow challenger Alistair (check out his forum post Programming the MAX32630FTHR with the Arduino IDE (Don't Forget to Set) - element14 Community). Then I hear that another challenger arvindsa is going to use LPSDK ( check out https://community.element14.com/challenges-projects/design-challenges/smart-security-and-surveillance/f/forum/56840/identity-protocol---part-3---unboxing-and-blinking-with-maxim-lpsdk  ) . 

I stopped in my tracks and before jumping on the band wagon and starting installing development environments, I decided to write this blog for this forum post. I’m a software Engineer and interested in embedded programming tool chains (there’s a lot of them out there). I am now interested in finding out more about these two environments, and I find there is a third option available.

So here's a breakdown of how to actually program this thing in 2026.

Supported Development Environments

Environment

Pros

Cons

Arduino IDE

Massive library support; easiest for beginners; familiar "Blink" workflow.

Harder to do deep register-level optimization; abstraction hides hardware complexity.

PlatformIO (VS Code)

Professional-grade; handles both Arduino and Mbed frameworks; great for version control.

Steeper learning curve than Arduino; requires manual environment switching.

Maxim LPSDK (Eclipse)

Official C/C++ access is provided at the "bare-metal" level. This includes the original examples and drivers, encompassing all the bare-metal register files, peripheral drivers, and original C examples.

Legacy software; Eclipse can be "clunky"; no longer receiving major updates.

Mbed OS (Legacy)

Built for ARM; great hardware abstraction for RTOS features.

End of Life (EOL); online compiler is gone; community support is fading.

MY Choice for Beginners: Arduino IDE

If you want to get a "Blinky" running in under 5 minutes, go with Arduino. Analog Devices maintains an official Arduino Core for Maxim git repo for Maxim's MAX326xx series based Boards.

Blinky Battle: Comparing the Frameworks

To see the differences in how these environments "think," let’s look at how they handle the onboard Green LED (P2_5).

1. The Arduino Way (Procedural)

C++

#include <Arduino.h>
void setup() {
  pinMode(LED_GREEN, OUTPUT);
}

void loop() {
  digitalWrite(LED_GREEN, LOW); // Active Low on this board!
  delay(500);
  digitalWrite(LED_GREEN, HIGH);
  delay(500);
}

  • Why it’s different: It uses the standard setup/loop structure. It’s simple, but it hides the fact that you're interacting with a complex ARM Cortex-M4F.

2. The Mbed Way (Object-Oriented)

C++

#include "mbed.h"
DigitalOut green_led(LED_GREEN);
int main() {
  while(1) {
    green_led = !green_led; // Toggle logic
    thread_sleep_for(500);
  }
}

  • Why it’s different: Mbed treats the LED as an "Object" (DigitalOut). It feels more like modern C++ and is built for multi-threaded applications.

3. The Bare-Metal / LPSDK Way (Register-Level)

C++

#include "mxc_device.h"
#include "gpio.h"
int main(void) {
    const gpio_cfg_t led = { PORT_2, PIN_5, GPIO_FUNC_OUT, GPIO_PAD_NONE };
    GPIO_Config(&led);
    while (1) {
        GPIO_OutToggle(&led);
        for(int i=0; i<1000000; i++) { __NOP(); } // Manual delay
    }
}

  • Why it’s different: This is "the real deal." You are talking directly to the GPIO registers. It’s extremely efficient but requires you to understand the hardware datasheet inside and out.

I plan to try all Supported Development Environments mentioned above, starting with the Arduino IDE to verify my hardware works. Then,to move on to PlatformIO in VS Code. It gives you the best of both worlds: the ease of either using Arduino code or Legacy Mbed code. I might try Maxim LPSDK, since I'm familiar with Eclipse. 

To set up a development environment for the MAX32630FTHR on Windows, you have several options ranging from beginner-friendly to professional-grade toolchains. Since Mbed OS is deprecated, the Arduino IDE or PlatformIO are now the recommended paths.

Required Hardware

For all environments, you must use a MAX32625PICO (DAPLink adapter) and a 10-pin ribbon cable to flash code to the MAX32630FTHR.

To prepare the boards for programming follow these steps:

  1. Connect the MAX32625PICO to the MAX32630FTHR board with the fine pitch 10 pin ribbon cable.
  2. Apply power to the MAX32630FTHR board through a micro USB connector.
  3. Connect the MAX32625PICO to a computer through a micro USB connector.

image

My host PC is running Windows 11. Once the hardware is connected and the MAX32625PICO is plugged into the computer, the system automatically creates a new COM port and mounts the device as a USB drive.

As shown in the Device Manager below, the board is recognized as COM15:

image

Additionally, the DAPLINK drive appears in the file system. Upon first connection, it contains two default files:

image

1. Arduino IDE (Highly Recommended for Beginners)

The simplest way to get a "Blinky" running quickly.

  • Download & Install:
    1. Download the latest version from the Arduino website.
    2. Run the installer and follow the standard Windows prompts. I have installed version 2.3.8
  • Configure:
    1. Open Arduino IDE and go to File > Preferences.
    2. Paste this URL into Additional Boards Manager URLs: 
      1. Go to the  preferences screen (File, Preferences) add https://raw.githubusercontent.com/analogdevicesinc/arduino-max326xx/master/package_maxim_index.json to the list of “Additional Boards Manager URLs”.
      2. image
    3. Go to Tools > Board > Boards Manager, search for "maxim", and install Maxim's 32-bit Microcontroller.
      1. image
    4. Select your board: Tools > Board > Maxim ARM (32-bit) Boards > MAX32630FTHR.
    5. Select a Port : Tools >Port
    6. Set the programmer: Tools > Programmer > DAPLink.
  • Compile & Run Blinky:
    1. Open the example: File > Examples > 01.Basics > Blink.
    2. Connect the board via the MAX32625PICO adapter.
    3. Click the Upload arrow icon.
  • Results:
    • Here is the IDE after the Upload. Success the LED is blinking using the example code.
    • image
  • Windows gotchas
    • Since I'm using Windows11, II ran into a few problems that I was able to resolve
    • Mbed serial driver is required. 
      • If you are a Windows user and do not already have the mbed serial drivers installed, then you will need to download and install them from  https://os.mbed.com/handbook/Windows-serial-configuration 
      • I need to get this since I'm running Windows 11.  But my Chrome browser did not work on the download link, so I needed to use another browser.
      • Now that Mbed serial driver is installed , the device manager shows a different COM port from the initial connection of COM15. The port is now COM16 as shown below.
      • image
    • Upload Fails
      • When I clicked the Upload icon, the upload failed.  The following error appeared:
      • image
      • So what is happening? I researched this and found my Arduino IDE for the  MAX32630FTHR is trying to use a legacy Windows tool called wmic that Microsoft has recently disabled or removed in Windows 11.
      • Via Command Line : Open Command Prompt or PowerShell as Administrator and run:

        • DISM /Online /Add-Capability /CapabilityName:WMIC~~~~ 
          • image
          • After this, restart the Arduino IDE and try your upload again.

Ok this is my Arduino setup completed on to the next environment.

Update: APR 15,2026 

2. Mbed - PlatformIO Extensions (VS Code)

PlatformIO is a professional-grade VS Code Extension that provides a unified development environment capable of handling multiple frameworks—like Arduino and Mbed—seamlessly in one place.

Mbed OS (Legacy) is still supported via PlatformIO as a local framework, which is a lifesaver now that the online compiler is gone. While it's officially End of Life (EOL) and not recommended for new projects, you can still compile and run your code locally. Just select "mbed" as your framework when creating a project in PlatformIO to keep working without those discontinued online services.

    • Download & Install:
      1. Install Visual Studio Code.
      2. Open VS Code, click the Extensions icon, search for "PlatformIO IDE", and click Install. 
    • Configure:
      1. Click the PlatformIO (Ant) icon and select + New Project.
      2. Name your project and search for a board: "Maxim MAX32630FTHR".
      3. Mbed as the framework.
    • Compile & Run Blinky: 
      1. Replace the contents of src/main.cpp with the blinky code. Add this Mbed code from the above section "2. The Mbed Way (Object-Oriented)".

#include "mbed.h"

DigitalOut green_led(LED_BLUE);

int main() {

    while(1) {

        green_led = !green_led; // Toggle logic

        thread_sleep_for(500);

    }

}

image

    1. Connect your board via the DAPLink adapter.
    2. Click the Checkmark (Build) and then the Right Arrow (Upload) on the bottom status bar. 

image

  • Result
    • LED is blinking GREEN now.

3. Maxim LPSDK (Eclipse-based Legacy)

Official bare-metal environment specifically for older chips like the MAX32630.

  • Download & Install:
    1. Visit the MAX32630 Product Page and go to Tools & Simulations.
    2. Download the LPSDK for Windows.
    3. Critical: Install it in a path without spaces (e.g., C:\MaximSDK\) to avoid build tool errors.
  • Configure:
    1. Launch the bundled Eclipse IDE.
    2. Import an existing project: File > Import > General > Existing Projects into Workspace.
    3. Navigate to the Examples/MAX32630/Hello_World folder within the SDK directory.
  • Compile & Run Blinky:
    1. Right-click the project and select Build Project.
    2. To run, right-click the project and select Run As > Maxim C/C++ Application (ensure your DAPLink is connected).

Thanks for reading my blog. hope you find it helpful. I'll be experimenting with these development environments over the next couple of days. Stay tuned and let me know what development Environments you are having success with programming the MAX32630FTHR

  • Sign in to reply
  • Cancel

Top Replies

  • arvindsa
    arvindsa 1 month ago +2
    The Maxim LPSDK won't work out of the box with the Feather Board. The examples are actually for the MAX32630-EVKIT which has a different pinout. The Board_Init() runs automatically before main() and tries…
  • skruglewicz
    skruglewicz 1 month ago in reply to arvindsa +1
    good to know thanks... SteveK
  • skruglewicz
    skruglewicz 1 month ago +1
    Hi Everyone UPDATE: I’ve successfully completed the setup for the Arduino IDE ! While it is the "simplest" path, I did encounter a few Windows 11 hurdles—specifically needing to manually install the…
  • arvindsa
    arvindsa 1 month ago

    The Maxim LPSDK won't work out of the box with the Feather Board. The examples are actually for the MAX32630-EVKIT which has a different pinout. The Board_Init() runs automatically before main() and tries to talk to the PMIC over I2CM0 — but on the FTHR the PMIC is on I2CM2, so it hangs silently and your firmware never starts. You will need to override Board_Init to get it to a working status

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • skruglewicz
    skruglewicz 1 month ago in reply to arvindsa

    good to know thanks... SteveK

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • skruglewicz
    skruglewicz 1 month ago

    Hi Everyone

    UPDATE: I’ve successfully completed the setup for the Arduino IDE! While it is the "simplest" path, I did encounter a few Windows 11 hurdles—specifically needing to manually install the Mbed serial drivers and resolving a WMIC dependency error via the command line. I’ve detailed the fixes in the main post above for anyone following along.

    Next Up: I’m moving on to the PlatformIO (VS Code) environment. I’m interested to see how it handles the dual-framework support for Arduino and Mbed locally.

    Thanks for following the journey!

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • skruglewicz
    skruglewicz 25 days ago in reply to skruglewicz
    skruglewicz said:

    Update: APR 15,2026 

    2. Mbed - PlatformIO Extensions (VS Code)

    PlatformIO is a professional-grade VS Code Extension that provides a unified development environment capable of handling multiple frameworks—like Arduino and Mbed—seamlessly in one place.

    I was able to run Mbed code in VS code using the PlatformIO extension. I documented it in section 2 in this forum post.

    Next Up: I’m moving on to section 3 "Maxim LPSDK (Eclipse-based Legacy)"
    The Official bare-metal environment specifically for older chips like the MAX32630.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube