Skip to main content

Arch Max v1.1

The Arch Max is a mbed enabled development board for rapid prototyping. It is based on an STM32F407VET6 microcontroller with an ARM Cortex-M4F core running at 168MHz. It provides Serial Wire Debug(SWD) debug, drag-and-drop programming and USB serial communication.

Version Tracker

NameVersionNote
Arch Max v1.0v1.05V cannot be powered by USB, user should connect to ext-power
Arch Max v1.1v1.15V cannot be powered by USB

Features

  • mbed enabled
    • Online development tools(include IDE)
    • Complete and straightforward C/C++ SDK
    • Massive examples and tutorials
  • High-performance STM32F407VET6
    • ARM Cortex-M4 MCU with FPU of 168MHz
    • 512 KB Flash memory, 192 KB RAM
  • On-board programming and debug
    • Drag-and-drop programming
    • USB serial communication
    • SWD debug with GDB+ pyOCD/OpenOCD, Keil or IAR
  • Arduino form factor, compatible with lots of shields
  • Built-in Ethernet port, USB and SD card slot for Internet connectivity and data exchange

Specifications

Parameter/ItemValue
Work Voltage5V
MicrocontrollerSTM32F407VET6
Flash Memory512KB
RAM192KB
UART4
I2C3
SPI3
CAN2
SDIO1
Camera interface1
Eth1
ADC Channels8
I/O pins40
Digital I/O Max Input Voltage5.0V
Diameter90mm x 44mm

Hardware Overview

Usage

  1. Click here to login or signup to mbed
  2. Import the mbed_blinky program
  3. Click the Compile icon of the top toolbar to compile the program, then download a compiled hex file.
  4. Drag-n-drop the downloaded bin file into the mbed disk

You can open main.cpp to change the program. For example, use the following code to blink the LED every 0.1 second

#include "mbed.h"

DigitalOut led(LED1); // on-board led is connected to D13

int main()
{
while (true) {
led = !led;
wait(0.1);
}
}

Note

If you are get a compiling error that 'device.h' is not found, try to update the mbed library to the latest revision in your program.

Schematic Online Viewer

Resources

Tech Support & Product Discussion

Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.

Loading Comments...