User Activity

Hello Folks,my initial goal is now to create a library. I have to use the SPI function outside of main.c file. However, I cannot make HAL_SPI_Transmit function run outside of main.c file. Also, I cannot able to run outside of main function inside the...
I'm trying to create my own library,When I use HAL_SPI_Transmit(), it gets stuck atvoid HardFault_Handler(void) @stm32f4xx_it.cI use SPI at my own library/function, not in the main function.I also check SPI_Transmit before calling my own function, it...
Hello folks,I want to create my own library.However, it seems I cannot send SPI_HandleTypedef between the main source and my library file. My codes are not even close to the finish, but I placed in here so that maybe I have different issues that I ma...
Hello folks,Today, I am trying to use SPI communication on my board. I saw that there is a gyroscope on my board. So, I thought it's a good idea to use this device as an example. Since it's already routed it up, I cannot mess up with connections, etc...
Hello Folks,I was doing my I2C example, and I realize that the STM board found an address with one left-shifted.I set my Arduino address as 70 -> 0x46 for hexadecimalvoid setup() { Wire.begin(0x46); // Wire communication begin }I connect my STM32F4...