This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 30391848066 crypto/cryptosoft: Add support for PBKDF2
new ba6ee9d559f arch/arm/ht32f491x3: add initial support
new 41c53e7fdc3 boards/arm/ht32f491x3: add ESK32 board support
new bd6a4663177 ht32f491x3/esk32: add docs and flash helpers
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../boards/esk32/ht32f491x3-starter-kit.jpg | Bin 0 -> 211344 bytes
.../arm/ht32f491x3/boards/esk32/index.rst | 177 ++++++
Documentation/platforms/arm/ht32f491x3/index.rst | 14 +
arch/arm/Kconfig | 12 +
arch/arm/include/ht32f491x3/chip.h | 69 +++
arch/arm/include/ht32f491x3/ht32f491x3_irq.h | 130 ++++
arch/arm/include/ht32f491x3/irq.h | 61 ++
arch/arm/src/Makefile | 9 +
arch/arm/src/ht32f491x3/CMakeLists.txt | 37 ++
arch/arm/src/ht32f491x3/Kconfig | 67 +++
arch/arm/src/ht32f491x3/Make.defs | 34 ++
arch/arm/src/ht32f491x3/arm_vectors.c | 108 ++++
arch/arm/src/ht32f491x3/chip.h | 43 ++
arch/arm/src/ht32f491x3/hardware/ht32f491x3_crm.h | 249 ++++++++
.../arm/src/ht32f491x3/hardware/ht32f491x3_flash.h | 50 ++
arch/arm/src/ht32f491x3/hardware/ht32f491x3_gpio.h | 83 +++
.../src/ht32f491x3/hardware/ht32f491x3_memorymap.h | 127 ++++
arch/arm/src/ht32f491x3/hardware/ht32f491x3_pwc.h | 48 ++
arch/arm/src/ht32f491x3/hardware/ht32f491x3_uart.h | 147 +++++
arch/arm/src/ht32f491x3/ht32f491x3_config.h | 53 ++
arch/arm/src/ht32f491x3/ht32f491x3_gpio.c | 78 +++
arch/arm/src/ht32f491x3/ht32f491x3_gpio.h | 63 ++
arch/arm/src/ht32f491x3/ht32f491x3_irq.c | 310 ++++++++++
arch/arm/src/ht32f491x3/ht32f491x3_lowputc.c | 287 +++++++++
arch/arm/src/ht32f491x3/ht32f491x3_lowputc.h | 43 ++
arch/arm/src/ht32f491x3/ht32f491x3_serial.c | 658 +++++++++++++++++++++
arch/arm/src/ht32f491x3/ht32f491x3_serial.h | 46 ++
arch/arm/src/ht32f491x3/ht32f491x3_start.c | 114 ++++
arch/arm/src/ht32f491x3/ht32f491x3_start.h | 39 ++
arch/arm/src/ht32f491x3/ht32f491x3_timerisr.c | 95 +++
boards/Kconfig | 11 +
boards/arm/ht32f491x3/esk32/CMakeLists.txt | 23 +
boards/arm/ht32f491x3/esk32/Kconfig | 10 +
boards/arm/ht32f491x3/esk32/configs/nsh/defconfig | 54 ++
boards/arm/ht32f491x3/esk32/include/board.h | 95 +++
boards/arm/ht32f491x3/esk32/scripts/Make.defs | 42 ++
boards/arm/ht32f491x3/esk32/scripts/ld.script | 119 ++++
boards/arm/ht32f491x3/esk32/src/CMakeLists.txt | 35 ++
boards/arm/ht32f491x3/esk32/src/Makefile | 37 ++
boards/arm/ht32f491x3/esk32/src/ht32_appinit.c | 101 ++++
boards/arm/ht32f491x3/esk32/src/ht32_boot.c | 117 ++++
boards/arm/ht32f491x3/esk32/src/ht32_userleds.c | 106 ++++
boards/arm/ht32f491x3/esk32/tools/flash.ps1 | 239 ++++++++
boards/arm/ht32f491x3/esk32/tools/flash.py | 91 +++
boards/arm/ht32f491x3/esk32/tools/flash.sh | 171 ++++++
45 files changed, 4502 insertions(+)
create mode 100644
Documentation/platforms/arm/ht32f491x3/boards/esk32/ht32f491x3-starter-kit.jpg
create mode 100644
Documentation/platforms/arm/ht32f491x3/boards/esk32/index.rst
create mode 100644 Documentation/platforms/arm/ht32f491x3/index.rst
create mode 100644 arch/arm/include/ht32f491x3/chip.h
create mode 100644 arch/arm/include/ht32f491x3/ht32f491x3_irq.h
create mode 100644 arch/arm/include/ht32f491x3/irq.h
create mode 100644 arch/arm/src/ht32f491x3/CMakeLists.txt
create mode 100644 arch/arm/src/ht32f491x3/Kconfig
create mode 100644 arch/arm/src/ht32f491x3/Make.defs
create mode 100644 arch/arm/src/ht32f491x3/arm_vectors.c
create mode 100644 arch/arm/src/ht32f491x3/chip.h
create mode 100644 arch/arm/src/ht32f491x3/hardware/ht32f491x3_crm.h
create mode 100644 arch/arm/src/ht32f491x3/hardware/ht32f491x3_flash.h
create mode 100644 arch/arm/src/ht32f491x3/hardware/ht32f491x3_gpio.h
create mode 100644 arch/arm/src/ht32f491x3/hardware/ht32f491x3_memorymap.h
create mode 100644 arch/arm/src/ht32f491x3/hardware/ht32f491x3_pwc.h
create mode 100644 arch/arm/src/ht32f491x3/hardware/ht32f491x3_uart.h
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_config.h
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_gpio.c
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_gpio.h
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_irq.c
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_lowputc.c
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_lowputc.h
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_serial.c
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_serial.h
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_start.c
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_start.h
create mode 100644 arch/arm/src/ht32f491x3/ht32f491x3_timerisr.c
create mode 100644 boards/arm/ht32f491x3/esk32/CMakeLists.txt
create mode 100644 boards/arm/ht32f491x3/esk32/Kconfig
create mode 100644 boards/arm/ht32f491x3/esk32/configs/nsh/defconfig
create mode 100644 boards/arm/ht32f491x3/esk32/include/board.h
create mode 100644 boards/arm/ht32f491x3/esk32/scripts/Make.defs
create mode 100644 boards/arm/ht32f491x3/esk32/scripts/ld.script
create mode 100644 boards/arm/ht32f491x3/esk32/src/CMakeLists.txt
create mode 100644 boards/arm/ht32f491x3/esk32/src/Makefile
create mode 100644 boards/arm/ht32f491x3/esk32/src/ht32_appinit.c
create mode 100644 boards/arm/ht32f491x3/esk32/src/ht32_boot.c
create mode 100644 boards/arm/ht32f491x3/esk32/src/ht32_userleds.c
create mode 100644 boards/arm/ht32f491x3/esk32/tools/flash.ps1
create mode 100755 boards/arm/ht32f491x3/esk32/tools/flash.py
create mode 100755 boards/arm/ht32f491x3/esk32/tools/flash.sh