stm32
stm32 copied to clipboard
STM32 stuff
Provided useful & appropriate links in the README.md for further reference.
The issue #20 had been fixed on all appropriate files
The problem: you have two boards and two nrf24l01 radios and you're trying to make them communicate. And nothing seems to work. You check your code, wiring, experiment with changes...
Arduino is used to program stm32 processors, but in the available library it is not possible to choose the type of spi port to connect nrf24l01
In function nRF24_ReadPayload: ` *length = nRF24_ReadReg(nRF24_REG_RX_PW_P0 + pipe); ` It works only for fixed size payload. I suggest replacing with: ` *length = nRF24_ReadReg(CMD_R_RX_PL_WID); ` This will work for...
https://github.com/LonelyWolf/stm32/blob/a6c104920ca905cf38c3b35e5b81e28e189166cf/Si4703/main.c#L98 Please, for compatibility with different stm32 microcontrollers, replace this check with the following: `while (I2C_CheckEvent(I2C_PORT,I2C_EVENT_MASTER_MODE_SELECT)==ERROR);` For stm32f4 `ErrorStatus` defined as: ``` typedef enum { ERROR = 0U, SUCCESS =...
https://github.com/LonelyWolf/stm32/blob/a6c104920ca905cf38c3b35e5b81e28e189166cf/Si4703/main.c#L101