Search found 1764 matches

by fpiSTM
Fri May 17, 2024 12:18 pm
Forum: General discussion
Topic: STM32C011 (WeAct) - first steps
Replies: 13
Views: 1097

Re: STM32C011 (WeAct) - first steps

There is an issue in your setup as you used: Wire.setSDA(PA5); Wire.setSCL(PA4); But they are not I2C pins based on the PinMap_I2C_SDA array you provide. The "PYn_R" pin is remap pin that's all but when you remap some other "PYn" pins will not be available. About D14/D15 it exist...
by fpiSTM
Tue May 07, 2024 7:27 am
Forum: General discussion
Topic: PN532 on SPI not working
Replies: 1
Views: 2064

Re: PN532 on SPI not working

Hi geologic Looking at the library, it seems you used Software SPI. https://github.com/adafruit/Adafruit-PN532/blob/f4e1a91afd0163d8601b243ddcbb2a580da6552a/Adafruit_PN532.h#L143-L145 Which relies on https://github.com/adafruit/Adafruit_BusIO/blob/master/Adafruit_SPIDevice.h So i guess there is an i...
by fpiSTM
Thu May 02, 2024 8:22 am
Forum: General discussion
Topic: Github Action "CMake Config and build" fails after adding a new Board
Replies: 4
Views: 3219

Re: Github Action "CMake Config and build" fails after adding a new Board

Hi,
your issue comes from this line:

Code: Select all

MyBoards.menu.upload_method.serialMethod.build.bootloader_flags=-DBL_LEGACY_LEAF -DVECT_TAB_OFFSET={build.flash_offset}
Don't know why you add it there it is not used for serialMethod
by fpiSTM
Thu May 02, 2024 7:58 am
Forum: IDE's
Topic: Using differential inputs with Arduino IDE
Replies: 1
Views: 3904

Re: Using differential inputs with Arduino IDE

Hi,
no the core doesn't provide support for ADC differential.
You can try to use HAL/LL directly.
Here an example how to use HAL/LL:
viewtopic.php?t=110
by fpiSTM
Wed Apr 24, 2024 3:20 pm
Forum: General discussion
Topic: Github Action "CMake Config and build" fails after adding a new Board
Replies: 4
Views: 3219

Re: Github Action "CMake Config and build" fails after adding a new Board

Hard to tell without the full code added.
Do you declare "MyBoards" properly?
by fpiSTM
Wed Apr 24, 2024 7:42 am
Forum: General discussion
Topic: WeAct Studio STM32F411CEU6 BlackPill v3.1 crystal is 8 MHz
Replies: 41
Views: 12075

Re: WeAct Studio STM32F411CEU6 BlackPill v3.1 crystal is 8 MHz

Arduino IDE 2 have/had issue with menu update. On older version of the IDE (prio 2.3.x), the menu is not refresh at startup.
This could explain your issue.

Go to advanced search