on pin boot0 there is a pull down resistor a pull to power supply switch? is that corect and digital pin 13?
on pin boot0 there is a pull down resistor a pull to power supply switch?
(4 posts) (3 voices)-
Posted 5 years ago #
-
yes, boot0 is pulled down to ground, and the button (labeled BUT) causes that signal to be pulled high (for changing the boot configuration when resetting), but that's not connected to digital 13, nor is it broken out in the headers.
digital 13 is connected to PA5.
Posted 5 years ago # -
So that button not the reset one I should not have programmed using the maple ide and arduino code to do things ?
So it does not go to the headers but I can use it to lets say push to have the loop go down path b.Posted 5 years ago # -
Pin 13 is the LED.
Pin 38 is the button labeled BUT. Ordinarily, it's just a GPIO you can use with digitalRead() etc. in order to influence your program flow. Its special semantics are:
1) Shortly _after_ pressing RESET, while the bootloader is running, pressing it will cause entry into perpetual bootloader mode.
2) _When_ RESET is released, if BUT is also pressed, Maple enters into serial bootloader mode.edit: removed "digital" in reference to pins, since that's an Arduino thing
Posted 5 years ago #
Reply
You must log in to post.