User Activity

Hi all,I'm using MCP2515 for a CAN application in the NUCLEO STM32WL board. I've managed to get it to work in pulling mode, however, I want to use interrupt mode. For what I looked, I just have to enable the MCP interrupt pin in EXTI mode in cubeMX, ...
Hi all,I want to increment the lap_marker variable only once when the lap_button is pressed, but when I press the button, it increments multiple times, untill I let go of the button (when I put a breakpoint in the loop it works fine).I only want to i...
Hi, I'm using the APP_LOG function to print data to serial. Here's how i do it:APP_LOG(TS_OFF, VLEVEL_L, "%d,%d,%d,%d,%d,", front_brake_pressure, rear_left_wheel_speed, rear_right_wheel_speed, front_left_wheel_speed, front_right_wheel_speed);APP_LOG(...
Hi all,I am receiving date and time by CAN for my application, and not using the RTC functionality because I couldn't get it to work with LoRa.Basically I receive day and month separately, and declare the year as a int. Same thing for the time, I rec...
Hi all,I'm trying to use Timer16 to create a 50Hz timer to save files in the SD card. I managed to make the timer work blinking a LED, but when I put the code to save it only saves one line. Here's the logic:First I create a file  and initiate the ti...