Quote:
python compileandload.py -d 00:50:xx:xx:xx:xx
-d specifies the bluetooth address of the watch, so make sure to correctly input the device address after the -d flag.
Quote:
IOError: [Errno 2] No such file or directory: '/Users/xxxx/Downloads/pulse_sdk/build/pulse_app.bin'
It seems that there is no compiled binary in the /build directory of the SDK. Run
python compileandload.py -c to compile the code in the /src directory. Once the app has been compiled you can send it over to the watch by running the python script with the -d and bluetooth address.
Quote:
If I tried to run make for compile (not sure if needed), it failed saying arm-none-eabi-gcc: No such file or directory.
The makefile is for local compiling on linux which requires an additional library. You can also locally compile in the ubuntu VM (see linux guide if interested).