Damien George
6e71cde6aa
|
2 years ago | |
---|---|---|
.. | ||
boards | 3 years ago | |
ra | 3 years ago | |
Makefile | 3 years ago | |
RA4M1_hal.h | 3 years ago | |
RA4W1_hal.h | 3 years ago | |
RA6M1_hal.h | 3 years ago | |
RA6M2_hal.h | 3 years ago | |
README.md | 3 years ago | |
boardctrl.c | 3 years ago | |
boardctrl.h | 3 years ago | |
build_all_boards.sh | 3 years ago | |
extint.c | 3 years ago | |
extint.h | 3 years ago | |
factoryreset.c | 3 years ago | |
factoryreset.h | 3 years ago | |
fatfs_port.c | 3 years ago | |
flash.c | 3 years ago | |
flash.h | 3 years ago | |
flashbdev.c | 3 years ago | |
gccollect.c | 3 years ago | |
gccollect.h | 3 years ago | |
help.c | 3 years ago | |
irq.c | 3 years ago | |
irq.h | 3 years ago | |
led.c | 3 years ago | |
led.h | 3 years ago | |
machine_adc.c | 3 years ago | |
machine_i2c.c | 3 years ago | |
machine_pin.c | 3 years ago | |
machine_rtc.c | 3 years ago | |
machine_spi.c | 3 years ago | |
machine_timer.c | 3 years ago | |
machine_uart.c | 3 years ago | |
main.c | 3 years ago | |
modmachine.c | 2 years ago | |
modmachine.h | 3 years ago | |
moduos.c | 3 years ago | |
modutime.c | 3 years ago | |
mpconfigboard_common.h | 3 years ago | |
mpconfigport.h | 2 years ago | |
mpconfigport.mk | 3 years ago | |
mphalport.c | 3 years ago | |
mphalport.h | 3 years ago | |
mpthreadport.c | 3 years ago | |
mpthreadport.h | 3 years ago | |
pendsv.c | 3 years ago | |
pendsv.h | 3 years ago | |
pin.h | 3 years ago | |
powerctrl.c | 3 years ago | |
powerctrl.h | 3 years ago | |
powerctrlboot.c | 3 years ago | |
pybthread.c | 3 years ago | |
pybthread.h | 3 years ago | |
qstrdefsport.h | 3 years ago | |
ra_it.c | 3 years ago | |
ra_it.h | 3 years ago | |
rtc.h | 3 years ago | |
softtimer.c | 3 years ago | |
softtimer.h | 3 years ago | |
spi.h | 3 years ago | |
storage.c | 3 years ago | |
storage.h | 3 years ago | |
systick.c | 3 years ago | |
systick.h | 3 years ago | |
timer.c | 3 years ago | |
timer.h | 3 years ago | |
uart.c | 3 years ago | |
uart.h | 3 years ago | |
usrsw.c | 3 years ago | |
usrsw.h | 3 years ago |
README.md
The Renesas RA port
This is a port of MicroPython to the Renesas RA family of microcontrollers. Currently supported features are:
- Filesystem on the internal flash using FatFs.
utime
module with sleep, time, and ticks functions.uos
module with VFS support.machine
module with the following classes:Pin
,ADC
,I2C
,SPI
,SoftI2C
,SoftSPI
,UART
,RTC
- sdcard driver if frozen driver is installed.
Currently supported board product names are:
- EK-RA6M2
- RA4M1 CLICKER
- EK-RA6M1
- EK-RA4M1
- EK-RA4W1
Please refer to the quick reference of renesas-ra
port for more
information about the boards.
Build instructions
-
MicroPython cross-compier The MicroPython cross-compiler must be built first, which will be used to pre-compile (freeze) built-in Python code. THis cross-compiler is built and run on the host machine, using:
$ make -C mpy-cross
This command should be executed from the root directory of this repository. All other commands below should be executed from the ports/renesas-ra/ directory.
-
Arm compiler An
Arm compiler
is required for the build, along with the associated binary utilities. The default compiler isarm-none-eabi-gcc
, which is available for Arch Linux and Windows hosts via https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads. The compiler can be changed using theCROSS_COMPILE
variable when invokingmake
. -
Obtain submodules First the submodules must be obtained using:
$ make submodules
-
Build binary image
.hex
Then to build for a given board subdirectory name, run:$ make BOARD=RA6M2_EK clean $ make BOARD=RA6M2_EK
The default board subdirectory name is RA6M2_EK (which is for EK-RA6M2 board) but any of the names of the subdirectories in the
boards/
directory can be passed as the argument toBOARD=
; for exampleRA4M1_CLICKER
,RA4M1_EK
,RA4W1_EK
andRA6M1_EK
. The above command should produce binary imagesfirmware.hex
in the build-RA6M2_EK/` subdirectory (or the equivalent directory for the board specified).
Supported/Unsupprted funtions
Please refer to the renesas-ra
quick reference.
Known issues
all boards
-
machine.lightsleep(time_ms) and machine.deepsleep(time_ms) raise uncaught exceptions.
machine.deepsleep(1000) Uncaught exception in ExtInt interrupt handler line 16 TypeError:
RA4M1-CLICKER
- mpremote: mount command is not available due to limited memory resources.
EK-RA4M1
- mpremote: mount command is not available due to limited memory resources.
EK-RA4W1
- mpremote: "Execution: timeout waiting for remote" error happens when importing a file on /remote.