본문 바로가기

공부/오류노트모음

(4)
[STM32CubeIDE] 오류 노트 Problem description: The float formatting support is not enabled, check your MCU Settings from "Project Properties > C/C++ Build > Settings > Tool Settings", or add manually "-u _printf_float" in linker flags. warnings 메세지 밑줄 삭제
[오류노트]python TypeError: arguments did not match any overloaded call: insertItem(self, int, str, userData: Any = None): argument 2 has unexpected type 'list' insertItem(self, int, QIcon, str, userData: Any = None): argument 2 has unexpected type 'list' insertItem ->insertItems insertItem 의 복수 형태인 insertItems S를 붙여야한다. pyinstaller failed to execute script pyinstaller 를 이용하여 exe 으로 변환할때 저 오류 메세지가 뜸 pynput 를 imp..
[오류노트] stm32f1 HAL_UART_Receive_IT(&huart1, RxBuffer, 1); HAL_UART_Receive_IT(&huart2, RxBuffer, 1); 이렇게 통신 인터럽을 붙여 썻더니 전원 인가시 시스템이 죽는 현상 HAL_UART_Receive_IT(&huart1, RxBuffer, 1); HAL_Delay(500); HAL_UART_Receive_IT(&huart2, RxBuffer, 1); 딜레이를 붙여서 해결 usart 통신 시에 시스템이 죽는 문제 HAL_UART_Transmit(&huart2,out_str1,strlen(out_str1),100); 이렇게만 썼을 시 통신을 빡시게 했을 시에 시스템이 죽는다. HAL_NVIC_DisableIRQ(USART2_IRQn); HAL_UART_Tra..
[오류노트] stm32f4 오류 메세지 Fatal Error[Pe1696]: cannot open source file "stm32f4xx_hal_exti.h" D:\Research\arm\stm32f429\washing_pcb\Inc\stm32f4xx_hal_conf.h 236 해결 언제 부터인가..Cube에서 생성하면 driver에서 stm32f4xx_hal_exti.c 를 생성한다. 그러니 exti.c를 삭제하고 그리고 stm32f4xx_hal_conf.h 에 가서 #define HAL_EXTI_MODULE_ENABLED 를 주석처리 해야한다.