Search found 1766 matches

by fpiSTM
Sun May 19, 2024 11:25 am
Forum: Libraries & Hardware
Topic: Bug in SPI-library or in example sketch?
Replies: 4
Views: 87

Re: Bug in SPI-library or in example sketch?

Sketch has not been updated after SPI rework.
by fpiSTM
Fri May 17, 2024 12:18 pm
Forum: General discussion
Topic: STM32C011 (WeAct) - first steps
Replies: 14
Views: 1606

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: 2187

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: 3311

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: 4005

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: 3311

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?

Go to advanced search