a1c991d921
Move boards to boards folder * boards: rename configs folder to boards This is the proposed layout after the change: boards: - folder containing board folders <board>: - name of each board drivers: - extra drivers specific for platform include: - header files for the boars scripts: - extra scripts specific for platform src: - board specific code tools: - extra tools specific for platform <config>: - board specific configuration(s) Note: <xxx> names are dependent on platform This is a logical change to aim to the arch layout but this is a huge change it should be done in several steps to lower the risk. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Kconfig: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Makefile: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Makefile.*: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * Make.defs: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .sh: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .mk: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .c & .h: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * .bat: replace configs with boards The change is needed after the path change Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> Approved-by: Gregory Nutt <gnutt@nuttx.org>
50 lines
1.7 KiB
INI
50 lines
1.7 KiB
INI
#
|
|
# Example configuration file to hook up an ESP32 module or board to a JTAG
|
|
# adapter. Please modify this file to your local setup.
|
|
#
|
|
#
|
|
|
|
|
|
# Include the configuration for the JTAG adapter. We use the Tian TUMPA here.
|
|
# If you have a different interface, please edit this to include the
|
|
# configuration file of yours.
|
|
# source [find interface/ftdi/olimex-arm-usb-ocd.cfg]
|
|
|
|
# The ESP32 only supports JTAG.
|
|
transport select jtag
|
|
|
|
# The speed of the JTAG interface, in KHz. If you get DSR/DIR errors (and they
|
|
# do not relate to OpenOCD trying to read from a memory range without physical
|
|
# memory being present there), you can try lowering this.
|
|
adapter_khz 200
|
|
|
|
# With no variables set, openocd will configure JTAG for the two cores of the ESP32 and
|
|
# will do automatic RTOS detection. This can be be adjusted by uncommenting any of the
|
|
# following lines:
|
|
|
|
# Only configure the PRO CPU
|
|
#set ESP32_ONLYCPU 1
|
|
# Only configure the APP CPU
|
|
#set ESP32_ONLYCPU 2
|
|
# Disable RTOS support
|
|
set ESP32_RTOS none
|
|
# Force RTOS to be FreeRTOS
|
|
#set ESP32_RTOS FreeRTOS
|
|
|
|
#Source the ESP32 configuration file
|
|
source [find target/esp32.cfg]
|
|
|
|
|
|
# The TDI pin of ESP32 is also a bootstrap pin that selects the voltage the SPI flash
|
|
# chip runs at. When a hard reset happens (e.g. because someone switches the board off
|
|
# and on) the ESP32 will use the current TDI value as the bootstrap value because the
|
|
# JTAG adapter overrides the pull-up or pull-down resistor that is supposed to do the
|
|
# bootstrapping. These lines basically set the idle value of the TDO line to a
|
|
# specified value, therefore reducing the chance of a bad bootup due to a bad flash
|
|
# voltage greatly.
|
|
|
|
# Enable this for 1.8V SPI flash
|
|
# esp108 flashbootstrap 1.8
|
|
# Enable this for 3.3V SPI flash
|
|
esp108 flashbootstrap 3.3
|