mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-04 20:08:44 +00:00
[feat] add demo readme for command line compile
This commit is contained in:
parent
3fcd3c73d2
commit
579ed433a3
60 changed files with 322 additions and 0 deletions
5
examples/adc/adc_continuous_differential/readme.md
Normal file
5
examples/adc/adc_continuous_differential/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_continuous_differential BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/adc/adc_continuous_single_ended/readme.md
Normal file
5
examples/adc/adc_continuous_single_ended/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_continuous_single_ended BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/adc/adc_key/readme.md
Normal file
5
examples/adc/adc_key/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_key BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/adc/adc_one_shot_differential/readme.md
Normal file
5
examples/adc/adc_one_shot_differential/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_one_shot_differential BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/adc/adc_one_shot_single_ended/readme.md
Normal file
5
examples/adc/adc_one_shot_single_ended/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_continuous_differential BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/adc/adc_scan_single_ended/readme.md
Normal file
5
examples/adc/adc_scan_single_ended/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_one_shot_single_ended BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/adc/adc_tsen/readme.md
Normal file
5
examples/adc/adc_tsen/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_tsen BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/adc/adc_vbat_poll/readme.md
Normal file
5
examples/adc/adc_vbat_poll/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=adc_vbat_poll BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/ble/ble_central/readme.md
Normal file
5
examples/ble/ble_central/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=ble_central BOARD=bl706_iot SUPPORT_FLOAT=y SUPPORT_FREERTOS=y SUPPORT_BLE=y
|
||||||
|
|
||||||
|
```
|
5
examples/ble/ble_peripheral/readme.md
Normal file
5
examples/ble/ble_peripheral/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=ble_peripheral BOARD=bl706_iot SUPPORT_FLOAT=y SUPPORT_FREERTOS=y SUPPORT_BLE=y
|
||||||
|
|
||||||
|
```
|
7
examples/boot2_iap/readme.md
Normal file
7
examples/boot2_iap/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_OTHER**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=boot2_iap BOARD=bl706_avb SUPPORT_XZ=y
|
||||||
|
|
||||||
|
```
|
7
examples/camera/camera_interleave/readme.md
Normal file
7
examples/camera/camera_interleave/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_CAMERA_LCD**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=camera_interleave BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
7
examples/camera/camera_interleave_psram/readme.md
Normal file
7
examples/camera/camera_interleave_psram/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_CAMERA_LCD**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=camera_interleave_psram BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
7
examples/camera/camera_lcd/readme.md
Normal file
7
examples/camera/camera_lcd/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_CAMERA_LCD**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=camera_lcd BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
5
examples/dac/dac_dma/readme.md
Normal file
5
examples/dac/dac_dma/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=dac_dma BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/dac/dac_mono_play_form_flash/readme.md
Normal file
5
examples/dac/dac_mono_play_form_flash/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=dac_mono_play_form_flash BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/dac/dac_poll/readme.md
Normal file
5
examples/dac/dac_poll/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=dac_poll BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/dma/dma_m2m/readme.md
Normal file
5
examples/dma/dma_m2m/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=dma_m2m BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/flash/flash_rw_test/readme.md
Normal file
5
examples/flash/flash_rw_test/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=flash_rw_test BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/freertos/freertos_semaphore/readme.md
Normal file
5
examples/freertos/freertos_semaphore/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=freertos_semaphore BOARD=bl706_iot SUPPORT_FREERTOS=y
|
||||||
|
|
||||||
|
```
|
5
examples/gpio/gpio_blink/readme.md
Normal file
5
examples/gpio/gpio_blink/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=gpio_blink BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/gpio/gpio_int/readme.md
Normal file
5
examples/gpio/gpio_int/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=gpio_int BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/hellowd/helloworld/readme.md
Normal file
5
examples/hellowd/helloworld/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=helloworld BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/i2c/i2c_at24cxx/readme.md
Normal file
5
examples/i2c/i2c_at24cxx/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=helloworld BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/i2c/i2c_bmp180/readme.md
Normal file
5
examples/i2c/i2c_bmp180/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=i2c_bmp180 BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
7
examples/i2s/i2s_play_form_flash/readme.md
Normal file
7
examples/i2s/i2s_play_form_flash/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_LVGL**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=i2s_play_form_flash BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
7
examples/i2s/i2s_play_form_sd/readme.md
Normal file
7
examples/i2s/i2s_play_form_sd/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_LVGL**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=i2s_play_form_sd BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
7
examples/lvgl/readme.md
Normal file
7
examples/lvgl/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_LVGL**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=lvgl BOARD=bl706_avb SUPPORT_LVGL=y
|
||||||
|
|
||||||
|
```
|
5
examples/memheap/readme.md
Normal file
5
examples/memheap/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=memheap BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/pka/sec_dsa/readme.md
Normal file
5
examples/pka/sec_dsa/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=sec_dsa BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/pka/sec_ecdh/readme.md
Normal file
5
examples/pka/sec_ecdh/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=sec_ecdh BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/pka/sec_ecdsa/readme.md
Normal file
5
examples/pka/sec_ecdsa/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=sec_ecdsa BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/power/lowpower_test/readme.md
Normal file
5
examples/power/lowpower_test/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=lowpower_test BOARD=bl706_lp
|
||||||
|
|
||||||
|
```
|
5
examples/psram/psram_sf_random_write_read/readme.md
Normal file
5
examples/psram/psram_sf_random_write_read/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=psram_sf_random_write_read BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/psram/psram_sf_write_read/readme.md
Normal file
5
examples/psram/psram_sf_write_read/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=psram_sf_write_read BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/pwm/pwm_breath_led/readme.md
Normal file
5
examples/pwm/pwm_breath_led/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=pwm_breath_led BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/pwm/pwm_it/readme.md
Normal file
5
examples/pwm/pwm_it/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=pwm_it BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/spi/spi_dma_sd/readme.md
Normal file
5
examples/spi/spi_dma_sd/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=spi_dma_sd BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/spi/spi_gsl61xx/readme.md
Normal file
5
examples/spi/spi_gsl61xx/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=spi_gsl61xx BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
7
examples/spi/spi_lcd/readme.md
Normal file
7
examples/spi/spi_lcd/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_LVGL**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=spi_lcd BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
5
examples/spi/spi_loopback/readme.md
Normal file
5
examples/spi/spi_loopback/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=spi_loopback BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/systick/readme.md
Normal file
5
examples/systick/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=systick BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/timer/timer_basic/readme.md
Normal file
5
examples/timer/timer_basic/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=timer_basic BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/timer/timer_int/readme.md
Normal file
5
examples/timer/timer_int/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=timer_int BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/uart/uart_dma/readme.md
Normal file
5
examples/uart/uart_dma/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=uart_dma BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/uart/uart_echo/readme.md
Normal file
5
examples/uart/uart_echo/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=uart_echo BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/uart/uart_poll/readme.md
Normal file
5
examples/uart/uart_poll/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=uart_poll BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/uart/uart_rx_it/readme.md
Normal file
5
examples/uart/uart_rx_it/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=uart_rx_it BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb2uart/readme.md
Normal file
5
examples/usb/usb2uart/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb2uart BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_audio_mouse/readme.md
Normal file
5
examples/usb/usb_audio_mouse/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_audio_mouse BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_cdc_acm2/readme.md
Normal file
5
examples/usb/usb_cdc_acm2/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_cdc_acm2 BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_cdc_loopback/readme.md
Normal file
5
examples/usb/usb_cdc_loopback/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_cdc_loopback BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_cdc_msc/readme.md
Normal file
5
examples/usb/usb_cdc_msc/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_cdc_msc BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
7
examples/usb/usb_cdc_video/readme.md
Normal file
7
examples/usb/usb_cdc_video/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_UVC**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_cdc_video BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
7
examples/usb/usb_cdc_video_psram/readme.md
Normal file
7
examples/usb/usb_cdc_video_psram/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_UVC**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_cdc_video_psram BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_hid_keyboard/readme.md
Normal file
5
examples/usb/usb_hid_keyboard/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_hid_keyboard BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_hid_mouse/readme.md
Normal file
5
examples/usb/usb_hid_mouse/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb2uart BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_msc_ram/readme.md
Normal file
5
examples/usb/usb_msc_ram/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_hid_mouse BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
5
examples/usb/usb_msc_sd/readme.md
Normal file
5
examples/usb/usb_msc_sd/readme.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_hid_mouse BOARD=bl706_iot
|
||||||
|
|
||||||
|
```
|
7
examples/usb/usb_video/readme.md
Normal file
7
examples/usb/usb_video/readme.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
**board/bl706_avb/pinmux_config.h** 中 **PINMUX_SELECT** 选择 **PINMUX_UVC**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
$ make APP=usb_video BOARD=bl706_avb
|
||||||
|
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue