• STM32f103 Clock configuration problem
    Hello, Here is my code: #include <stdio.h> #include <string.h> #include "stm32f10x_gpio.h" #include "stm32f10x_rcc.h" void GPIOSYS(void){ GPIO_InitTypeDef GPIOStructure; RCC_APB2PeriphClockCmd...
  • problem in RTC ALARM
    hi everyone I'm usig stm32f103 and code below to set rtc alarm every one hour RTC_Alarm_Time.Alarm = 1; RTC_Alarm_Time.AlarmTime.Hours=RTC_Time.Hours+1; if (RTC_Alarm_Time.AlarmTime.Hours>23) {...
  • Driver CMSIS ESP32 and Network stack
    I am currently working on the integration of the Keil Network stack in order to use an Ethernet (currently operational) and a WiFi link. For the WiFi function, we have chosen a component that Keil says...
  • How to print osStatus_t defines easily?
    I am trying to debug a code that was written with little error checking. I want to output via debug printf what the functions have returned, so whether threads were suspended or not. In this case the...
  • Why can't I start the timer?
    I am trying to create a timer and start it according to the guide. // Create timers osTimerId_t UART_timer = osTimerNew(printMessage, osTimerPeriodic, (void *) 5U, NULL); if (UART_timer != NULL...