viewtopic.php?f=2&t=301
Which core?
Which board?
Maybe the board has already reserved these pins for other purpose.
Search found 505 matches
- Tue Jun 08, 2021 8:42 am
- Forum: General discussion
- Topic: Adafruit_ST7735 not working on pin PA1
- Replies: 5
- Views: 4830
- Sun Jun 06, 2021 6:55 pm
- Forum: STLink
- Topic: [SOLVED]Imposible to flash with STLink v2 key ( STM32F1xx and STM32F4xx)
- Replies: 26
- Views: 83251
Re: Imposible to flash with STLink v2 key ( STM32F1xx and STM32F4xx)
Maybe you have to install libusb-1.0?
I do not have experience with linux at all.
I do not have experience with linux at all.
- Sat Jun 05, 2021 7:04 pm
- Forum: STLink
- Topic: [SOLVED]Imposible to flash with STLink v2 key ( STM32F1xx and STM32F4xx)
- Replies: 26
- Views: 83251
Re: Imposible to flash with STLink v2 key ( STM32F1xx and STM32F4xx)
Please set "verbose" on in Arduino settings for compilation, then try again and post here the message.
- Fri Jun 04, 2021 5:23 pm
- Forum: STLink
- Topic: [SOLVED]Imposible to flash with STLink v2 key ( STM32F1xx and STM32F4xx)
- Replies: 26
- Views: 83251
- Fri Jun 04, 2021 5:18 pm
- Forum: General discussion
- Topic: Multiple i2c port drive & Multiple SPI port drive
- Replies: 12
- Views: 11924
Re: Multiple i2c port drive & Multiple SPI port drive
The error message is clear: you have to cast the second parameters of the function calls to
and
In addition, you have to change the size of buffer to:
Code: Select all
byte error = eep.write( 0, (byte*)test, sizeof(test));
Code: Select all
eep.read( 0, (byte*)bufer, sizeof(test));
Code: Select all
char buffer[sizeof(test)+1];
- Mon May 31, 2021 1:26 pm
- Forum: General discussion
- Topic: SPI port drive Windbond w25 q32
- Replies: 5
- Views: 7863
Re: SPI port drive Windbond w25 q32
Try this one:
This is set to use SPI1 and chip select pin PA4.- Fri May 28, 2021 12:52 pm
- Forum: General discussion
- Topic: SPI port drive Windbond w25 q32
- Replies: 5
- Views: 7863
Re: SPI port drive Windbond w25 q32
Have a look into these files:
https://github.com/adafruit/Adafruit_SPIFlash/tree/master/src/spi
or here:
http://www.rinkydinkelectronics.com/download.php?f=SPIflash.zip
or here:
https://github.com/nimaltd/w25qxx (in this case you have to replace the HAL function calls to corresponding libmaple ...
https://github.com/adafruit/Adafruit_SPIFlash/tree/master/src/spi
or here:
http://www.rinkydinkelectronics.com/download.php?f=SPIflash.zip
or here:
https://github.com/nimaltd/w25qxx (in this case you have to replace the HAL function calls to corresponding libmaple ...
- Wed May 26, 2021 7:26 am
- Forum: General discussion
- Topic: Problems writing to Client using EthernetWebServer_SSL_STM32 and SdFat libraries
- Replies: 7
- Views: 6350
- Tue May 25, 2021 10:10 pm
- Forum: General discussion
- Topic: Problems writing to Client using EthernetWebServer_SSL_STM32 and SdFat libraries
- Replies: 7
- Views: 6350
Re: Problems writing to Client using EthernetWebServer_SSL_STM32 and SdFat libraries
I think you should post an issue on the github page of khoih.
- Tue May 25, 2021 7:53 am
- Forum: USB bootloader
- Topic: Bootloader Stuck 1EAF:004?
- Replies: 4
- Views: 21118
Re: Bootloader Stuck 1EAF:004?
A DTR pulse is not enough, a magic sequence should be also transmitted over USB serial.
You can try to manually reset the board short before you upload the code.
You can try to manually reset the board short before you upload the code.