/AliOS-Things-master/components/py_engine/engine/tools/autobuild/ |
A D | remove_old_firmware.py | 34 dir, board, date, version = m.groups() 35 if board not in boards: 36 boards[board] = {} 37 if (date, version) not in boards[board]: 38 boards[board][(date, version)] = [] 39 boards[board][(date, version)].append(file) 43 for board in boards.values(): 44 filelist = [(date, version, files) for (date, version), files in board.items()]
|
A D | build-esp8266-latest.sh | 12 board=$2 15 echo "building $descr $board" 17 build_dir=build-$board # until esp8266.ld is fixed 19 $MICROPY_AUTOBUILD_MAKE $@ BOARD=$board BUILD=$build_dir || exit 1 28 board=$2 31 echo "building $descr $board" 33 build_dir=build-$board # until esp8266.ld is fixed 35 $MICROPY_AUTOBUILD_MAKE $@ BOARD=$board BUILD=$build_dir || exit 1
|
A D | build-rp2-latest.sh | 6 board=$2 9 echo "building $descr $board" 10 build_dir=/tmp/rp2-build-$board 11 $MICROPY_AUTOBUILD_MAKE $@ BOARD=$board BUILD=$build_dir || exit 1
|
A D | build-cc3200-latest.sh | 6 board=$2 9 echo "building $descr $board" 10 build_dir=/tmp/cc3200-build-$board 11 $MICROPY_AUTOBUILD_MAKE $@ BTARGET=application BOARD=$board BUILD=$build_dir || exit 1
|
A D | build-stm32-latest.sh | 6 board=$2 9 echo "building $descr $board" 10 build_dir=/tmp/stm-build-$board 11 $MICROPY_AUTOBUILD_MAKE $@ BOARD=$board BUILD=$build_dir || exit 1 53 for board in boards/{NUCLEO_*,STM32F*DISC,B_L*,USBDONGLE_WB55,ESPRUINO_PICO} ; do 54 bd=$(basename $board)
|
A D | build-mimxrt-latest.sh | 6 board=$2 11 echo "building $descr $board" 12 build_dir=/tmp/mimxrt-build-$board 13 $MICROPY_AUTOBUILD_MAKE $@ BOARD=$board BUILD=$build_dir || exit 1
|
A D | build-esp32-latest.sh | 11 board=$2 14 echo "building $descr $board" 15 build_dir=/tmp/esp32-build-$board 17 make $@ BOARD=$board BUILD=$build_dir || exit 1
|
/AliOS-Things-master/hardware/board/haas700/ |
A D | package.yaml | 3 description: HaaS 700 board. # <必选项> 建议至少20字以上 4 type: board # <必选项> 组件类型,为:solution, chip, board, common
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | metrics.py | 148 board = re.search(r"/build-([A-Za-z0-9_]+)/", key) 149 if board: 150 board = board.group(1) 152 board = "" 167 print("%11s: %+5u %+.3f%% %s%s" % (name, delta, percent, board, warn))
|
/AliOS-Things-master/documentation/aos-tools/ |
A D | aos-tools_user_manual.md | 78 hardware/board 110 board_dummy (V7.3.0) - csi_dummy development board configure. 112 cb2201 (V7.3.0) - CB2201 board configure. 125 - 显示各种类型的组件信息,包括solution组件、chip组件、board组件、common组件: 144 …选项、链接脚本、工具链、组件源码等信息。<br />当一个solution依赖单个或者多个board组件时,可以通过命令 `aos show -b board_name` 来查看方案依赖的组件列表… 222 在solution目录下使用,使用aos make编译完成后,使用该命令烧录固件。烧录的参数配置,烧录工具,由当前solution使用的board组件或chip组件指定;烧录的文件,从solutio… 252 ## make solution@board -c config 253 为了兼容aos-cube的功能,保留该指令。<br />在aos顶层目录下使用,配置当前需要编译的solution和board。该命令将在当前目录下生成一个 `.config`文件。 261 aos create project -b <board> -t <solution> -d <destdir> <solution_name>
|
/AliOS-Things-master/documentation/yaml/ |
A D | package.yaml_user_manual.md | 23 …为:<br />solution,board,chip,arch ,drv_core,drv_peripheral, drv_external_device, kernel, common<br … 31 …来。<br />组件的版本请查询组件的package.yaml里面的version字段。<br />**注:对于solution的组件,可以依赖多个board组件。由board_name指定本次构… 37 | board_name | Y | 指定开发板组件名,未设置时,使用depends中 board 第一个组件 | 39 | ld_script | N | 链接时使用的 LD 脚本,未设置时,使用对应的 board 的 LD 脚本 | 40 | board板级配置 | | | 63 | cflag | N | chip、board或者solution组件里的C编译器选项 | 64 | cxxflag | N | chip、board或者solution组件里的C++编译器选项 | 65 | asmflag | N | chip、board或者solution组件里的汇编编译器选项 | 66 | ldflag | N | chip、board或者solution组件里的链接选项 | 72 …ef_config | N | 组件的可配置项。<br />当 common 组件、chip 组件、board 组件、solution 组件都存在相同配置时,优先顺序为 :solution > b…
|
/AliOS-Things-master/components/ble_host/bt_host/ali_vendormodel_profile/ |
A D | README.rst | 36 2. program the dev board with generated elf image. 52 3. use minicom or other serial tools to connect to dev board. 57 …onses "嗯,已发现智能设备,是否连接?", say "连接", then tmall genius will establish gatt connection with dev board. 58 …as been established, say "天猫精灵,开灯 or 天猫精灵,关灯" to control the LED1's on/off status on the dev board. 59 note: Using LED1(p0.17) of nrf52832 pca10040 dev board for demo here.
|
/AliOS-Things-master/solutions/amp_demo/ |
A D | Makefile | 12 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 20 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/audio_demo/ |
A D | Makefile | 12 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 20 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/eduk1_demo/ |
A D | Makefile | 12 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 20 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/linksdk_gateway_demo/ |
A D | Makefile | 12 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 20 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/lora_p2p_demo/ |
A D | Makefile | 12 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 20 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/py_engine_demo/ |
A D | Makefile | 12 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 20 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/rfid_demo/ |
A D | Makefile | 12 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 20 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/ota_demo/ |
A D | Makefile | 15 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 35 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/tflite_micro_speech_demo/ |
A D | Makefile | 15 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 35 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/ucloud_ai_demo/ |
A D | Makefile | 15 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 35 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/flower_demo/ |
A D | Makefile | 15 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 35 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/kws_demo/ |
A D | Makefile | 15 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 35 $(CPRE) scons -c --board=$(BOARD)
|
/AliOS-Things-master/solutions/auto_demo/ |
A D | Makefile | 15 $(CPRE) scons $(VERB) --board=$(BOARD) $(MULTITHREADS) $(MAKEFLAGS) 35 $(CPRE) scons -c --board=$(BOARD)
|