at least P8 watch has SPI shared with display, didn't you try writing to display? also the flash chip can be sleeping, you can try something like
FCS=D5;
var fc=new SPI();fc.setup({sck:D2,miso:D4,mosi:D3,mode:0});
fc.send([0xab],FCS);//wake flash from deep sleep
fc.send([0x90,0,0,1,0,0],FCS) // get flash id
fc.send([0x9f,0,0,0],FCS); //get flash id
hopefully it should print something else than all zeroes or all FFs
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
at least P8 watch has SPI shared with display, didn't you try writing to display? also the flash chip can be sleeping, you can try something like
hopefully it should print something else than all zeroes or all FFs