1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #/bin/sh
- CHIPNAME=$1
- PORT=$2
- set -e
- SYSTEM=`uname -s`
- TOOL_SUFFIX=-ubuntu
- echo "system: $SYSTEM"
- if [ $SYSTEM = "Darwin" ]
- then
- TOOL_SUFFIX=-macos
- elif [ $SYSTEM = "Linux" ]
- then
- TOOL_SUFFIX=-ubuntu
- else
- TOOL_SUFFIX=.exe
- fi
- CONFIG_DIR=./bl60x
- if [ $CHIPNAME = 'bl602' ]
- then
- CONFIG_DIR=./bl60x
- elif [ $CHIPNAME = 'bl616' ]
- then
- CONFIG_DIR=./bl61x
- elif [ $CHIPNAME = 'bl702' ]
- then
- CONFIG_DIR=./bl70x
- elif [ $CHIPNAME = 'bl808' ]
- then
- CONFIG_DIR=./bl808
- elif [ $CHIPNAME = 'bl808-m0' ]
- then
- CONFIG_DIR=./bl808/m0
- elif [ $CHIPNAME = 'bl808-lp' ]
- then
- CONFIG_DIR=./bl808/lp
- elif [ $CHIPNAME = 'bl808-d0' ]
- then
- CONFIG_DIR=./bl808/d0
- else
- echo "chip name error"
- fi
- TOOL_DIR=./libraries/bl_mcu_sdk/tools/bflb_tools
- TOOL_NAME='BLFlashCommand'$TOOL_SUFFIX
- CONFIG_FILE=$CONFIG_DIR'/flash_prog_cfg.ini'
- if [ -f "$TOOL_DIR/bouffalo_flash_cube/$TOOL_NAME" ]
- then
- echo "bouffalo_flash_cube exist"
- else
- echo "bouffalo_flash_cube not exist, try download... "
- ./$TOOL_DIR/get_bouffalo_flash_cube.sh
- fi
- ./$TOOL_DIR/bouffalo_flash_cube/$TOOL_NAME --interface=uart --baudrate=2000000 --chipname=$CHIPNAME --config=$CONFIG_FILE --port=$PORT
|