* fix mbedtls bad pointer in function call (prototype mismatch) * fix issue with weak families functions implemented in static library, it will never be linked. fixed by redefining prototypes inside families * [ln882x] add support for lightning ln882x & ln882h families * add i2c (wire) support * add analog (adc) support * add watchdog support * [ln882x] changed default uart 0/1 pins; added board wl2s * [ln882x] fix IRQ & ADC pins * [ln882x] boards cosmetic * [ln882x] wifi sta use otp mac addr by default; re-enabled wifi powersave mode * [ln882x] clang-format clean code * [ln882x] clang-format clean code * Update families.json * Apply suggestions from code review * [ln882x] reformat json board files * [ln882x] os_queue cleanup * [ln882x] removed Beken auto-download command * [ln882x] removed personal script file * [ln882x] removed unusefull pi section in debugging.md * [ln882x] removed Arduino.h and changed private I2C definition * [ln882x] updated README.md * [ln882x] changed pin naming scheme to PA/PB * [ln882x] clean code * [ln882x] clean code * [ln882x] add ota image verification * Update push-dev.yml * [ln882x] fix boards ADC missing inputs] * [ln882x] removed reg_xxx fixup files and use include guards instead * [ln882x] cleanup code * [ln882x] cleanup code * [ln882x] fix lt_init weak functions linking * [ln882x] revert lt_api.h modification, fixed with previous commit * [ln882x] setup UF2 firmware for flasher with partitions * [ln882x] update README.md * [ln882x] include ln_wifi.h and ln_serial.h to avoid including bad headers on case insensitive systems * [ln882x] Replace RingBuffer by SerialRingBuffer * [ln882x] clang-format * [ln882x] update README.md * Apply suggestions from code review * Reformat board JSON files * Add mkdocs link redirect * Update ltchiptool to v4.12.0 --------- Co-authored-by: Kuba Szczodrzyński <kuba@szczodrzynski.pl>
60 lines
1.3 KiB
INI
60 lines
1.3 KiB
INI
# Main file for ln882x series Cortex-M3 parts
|
|
#
|
|
# !!!!!!
|
|
#
|
|
|
|
set CHIPNAME ln882h
|
|
set CHIPSERIES ln882x
|
|
|
|
transport select swd
|
|
|
|
# Adapt based on what transport is active.
|
|
source [find target/swj-dp.tcl]
|
|
|
|
if { [info exists CHIPNAME] } {
|
|
set _CHIPNAME $CHIPNAME
|
|
} else {
|
|
error "CHIPNAME not set. Please do not include ln882x.cfg directly."
|
|
}
|
|
|
|
if { [info exists CHIPSERIES] } {
|
|
# Validate chip series is supported
|
|
if { $CHIPSERIES != "ln882x" } {
|
|
error "Unsupported chip series specified."
|
|
}
|
|
set _CHIPSERIES $CHIPSERIES
|
|
} else {
|
|
error "CHIPSERIES not set. Please do not include ln882x.cfg directly."
|
|
}
|
|
|
|
if { [info exists CPUTAPID] } {
|
|
# Allow user override
|
|
set _CPUTAPID $CPUTAPID
|
|
} else {
|
|
# ln882x use a Cortex M4 core.
|
|
if { $_CHIPSERIES == "ln882x" } {
|
|
set _CPUTAPID 0x2ba01477
|
|
}
|
|
}
|
|
|
|
swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
|
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
|
dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
|
|
|
|
set _ENDIAN little
|
|
|
|
target create $_TARGETNAME cortex_m -endian $_ENDIAN -dap $_CHIPNAME.dap
|
|
|
|
adapter speed 1000
|
|
adapter srst delay 200
|
|
|
|
# ln882x (Cortex M4 core) support SYSRESETREQ
|
|
if {![using_hla]} {
|
|
# if srst is not fitted use SYSRESETREQ to
|
|
# perform a soft reset
|
|
cortex_m reset_config sysresetreq
|
|
}
|
|
|
|
#$_TARGETNAME configure -event reset-init {ln882x_init}
|