------Question for BLDCSHIELDTLE9879TOBO1 Please Put your question below------
I’m trying to run this from an Arduino Mega over a SPI bus. All I every get is a solid white light on the shield, which seems to indicate that it’s looking for a boot loader. I don’t want to spend the >$1000 for the development kit to program the ARM direction. Any ideas how to solve this?
Thanks,
Thank you for your inquiry and welcome to the community!
I don’t think a white LED is searching for a bootloader. On the Infineon developer community I’m seeing that the default setting for the Red Green Blue LED is all on, which would be white.
You need to turn them off in your code.
This would be the code.
shields->setLed(LED_GREEN,LED_OFF,BOARD1);
shields->setLed(LED_RED,LED_OFF,BOARD1);
shields->setLed(LED_BLUE,LED_OFF,BOARD1);
Thanks. It turns out it was a miswired SPI bus.
1 Like