From f63fb6b5cc16b5339a221d8eb8e068b52760ef7f Mon Sep 17 00:00:00 2001 From: jzlv Date: Mon, 21 Mar 2022 14:59:16 +0800 Subject: [PATCH] [doc] update build cmd --- examples/adc/adc_continuous_differential/readme.md | 2 +- examples/adc/adc_int/readme.md | 2 +- examples/audio_cube/readme.md | 4 +--- examples/cxx/readme.md | 5 +++++ examples/flash/flash_rw/readme.md | 2 +- examples/freertos/freertos_semaphore/readme.md | 2 +- examples/gpio/gpio_dht11/readme.md | 5 +++++ examples/lvgl/readme.md | 4 +--- examples/mbedtls/aes/readme.md | 5 +++++ examples/rtc/rtc_calendar/readme.md | 5 +++++ examples/spi/spi_i2s_mono_play/readme.md | 1 - examples/spi/spi_ssd1306_badapple/readme.md | 2 +- 12 files changed, 27 insertions(+), 12 deletions(-) create mode 100644 examples/cxx/readme.md create mode 100644 examples/gpio/gpio_dht11/readme.md create mode 100644 examples/mbedtls/aes/readme.md create mode 100644 examples/rtc/rtc_calendar/readme.md diff --git a/examples/adc/adc_continuous_differential/readme.md b/examples/adc/adc_continuous_differential/readme.md index ea5d4d42..9bcdb048 100644 --- a/examples/adc/adc_continuous_differential/readme.md +++ b/examples/adc/adc_continuous_differential/readme.md @@ -7,7 +7,7 @@ $ make APP=adc_continuous_differential BOARD=bl706_iot # 基本配置 -此示例需要将对应board目录下的pinmux_config文件中的GPIO11与GPIO13配置为ADC复用功能, +此示例需要将对应board目录下的pinmux_config文件中的GPIO11与GPIO12配置为ADC复用功能, 并且将对应board目录下的clock_config.h文件中的ADC时钟配置为相应的时钟。 # 基本原理 diff --git a/examples/adc/adc_int/readme.md b/examples/adc/adc_int/readme.md index cf6317f8..aaa724b4 100644 --- a/examples/adc/adc_int/readme.md +++ b/examples/adc/adc_int/readme.md @@ -1,5 +1,5 @@ ```bash -$ make APP=adc_continuous_differential BOARD=bl706_iot +$ make APP=adc_int BOARD=bl706_iot ``` \ No newline at end of file diff --git a/examples/audio_cube/readme.md b/examples/audio_cube/readme.md index e7924d65..51bf2de4 100644 --- a/examples/audio_cube/readme.md +++ b/examples/audio_cube/readme.md @@ -1,8 +1,6 @@ -**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_LVGL** - ```bash -$ make APP=isp_audio_test BOARD=bl706_avb +$ make APP=audio_cube BOARD=bl706_avb isp 协议 测试 diff --git a/examples/cxx/readme.md b/examples/cxx/readme.md new file mode 100644 index 00000000..e2dcde03 --- /dev/null +++ b/examples/cxx/readme.md @@ -0,0 +1,5 @@ +```bash + +$ make APP=cxx BOARD=bl706_iot + +``` \ No newline at end of file diff --git a/examples/flash/flash_rw/readme.md b/examples/flash/flash_rw/readme.md index 986f709a..de5ff0cd 100644 --- a/examples/flash/flash_rw/readme.md +++ b/examples/flash/flash_rw/readme.md @@ -1,5 +1,5 @@ ```bash -$ make APP=flash_read_write BOARD=bl706_iot +$ make APP=flash_rw BOARD=bl706_iot ``` \ No newline at end of file diff --git a/examples/freertos/freertos_semaphore/readme.md b/examples/freertos/freertos_semaphore/readme.md index 74a1030a..7b7e9650 100644 --- a/examples/freertos/freertos_semaphore/readme.md +++ b/examples/freertos/freertos_semaphore/readme.md @@ -1,5 +1,5 @@ ```bash -$ make APP=freertos_semaphore BOARD=bl706_iot SUPPORT_FREERTOS=y +$ make APP=freertos_semaphore BOARD=bl706_iot ``` \ No newline at end of file diff --git a/examples/gpio/gpio_dht11/readme.md b/examples/gpio/gpio_dht11/readme.md new file mode 100644 index 00000000..47d29ac1 --- /dev/null +++ b/examples/gpio/gpio_dht11/readme.md @@ -0,0 +1,5 @@ +```bash + +$ make APP=gpio_dht11 BOARD=bl706_iot + +``` \ No newline at end of file diff --git a/examples/lvgl/readme.md b/examples/lvgl/readme.md index 21844266..855e5749 100644 --- a/examples/lvgl/readme.md +++ b/examples/lvgl/readme.md @@ -1,7 +1,5 @@ -**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_LVGL** - ```bash -$ make APP=lvgl BOARD=bl706_avb SUPPORT_LVGL=y +$ make APP=lvgl BOARD=bl706_avb ``` \ No newline at end of file diff --git a/examples/mbedtls/aes/readme.md b/examples/mbedtls/aes/readme.md new file mode 100644 index 00000000..3d61da90 --- /dev/null +++ b/examples/mbedtls/aes/readme.md @@ -0,0 +1,5 @@ +```bash + +$ make APP=aes BOARD=bl706_iot + +``` \ No newline at end of file diff --git a/examples/rtc/rtc_calendar/readme.md b/examples/rtc/rtc_calendar/readme.md new file mode 100644 index 00000000..23a4339b --- /dev/null +++ b/examples/rtc/rtc_calendar/readme.md @@ -0,0 +1,5 @@ +```bash + +$ make APP=rtc_calendar BOARD=bl706_iot + +``` \ No newline at end of file diff --git a/examples/spi/spi_i2s_mono_play/readme.md b/examples/spi/spi_i2s_mono_play/readme.md index 98d95bb7..69da1058 100644 --- a/examples/spi/spi_i2s_mono_play/readme.md +++ b/examples/spi/spi_i2s_mono_play/readme.md @@ -1,5 +1,4 @@ ## 修改程序 --- **board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_LVGL** -- **board/bl706_avb/pinmux_config.h** 中 **CONFIG_GPIO10_FUNC** 、 **CONFIG_GPIO19_FUNC** 、 **CONFIG_GPIO20_FUNC** 、 **CONFIG_GPIO21_FUNC**选择 **GPIO_FUN_SPI** diff --git a/examples/spi/spi_ssd1306_badapple/readme.md b/examples/spi/spi_ssd1306_badapple/readme.md index a2be666d..d7d8a127 100644 --- a/examples/spi/spi_ssd1306_badapple/readme.md +++ b/examples/spi/spi_ssd1306_badapple/readme.md @@ -1,5 +1,5 @@ ```bash -$ make APP=spi_oled_badapple BOARD=bl706_avb +$ make APP=spi_ssd1306_badapple BOARD=bl706_avb ``` \ No newline at end of file