IT/Software 2021. 10. 25.
Error using mbedtls_x509_crt_parse
mbedtls 사용시에 mbedtls_x509_crt_parse() 함수 호출 시에 ret = mbedtls_x509_crt_parse(&cacert, (const unsigned char *)mbedtls_m2mqtt_srv_crt, mbedtls_m2mqtt_srv_crt_len ); ... And I get an error -9774. Could you help me to understand why the first certificate works, and the other doesn’t? Thank you, Mattia https://forums.mbed.com/t/error-using-mbedtls-x509-crt-parse/4164 Error using mbedtls_x509_crt_parse..
IT/파이썬 2021. 2. 19.
파이썬 flask Jinja2: Check If Variable – Empty | Exists | Defined | True
이거 중요함. 체크안하고 render_template 함수에서 막 쓰면, 자꾸 선언되어 있지 않다고 오류가 막남... variable is undefined? 이런류의 에러, Exception 발생 들어올 수 도 있고 안 들어 올 수 도 있는 변수는 쓰기 전에 반드시 체크하고 사용하기 바람. {% if variable is defined %} variable is defined
IT/IoT | Hardware 2019. 1. 4.
Cannot compile blink sketch for Arduino MKR boards
Cannot compile blink sketch for Arduino MKR boards 헛참 그냥 가장 기본 예제돌리는데 에러라....대충 에러 내용은 아래와 같다. In file included from C:\Users\User\AppData\Local\Arduino15\packages\arduino\tools\CMSIS-Atmel\1.1.0/CMSIS/Device/ATMEL/samd21/include/samd21.h:69:0, from C:\Users\User\AppData\Local\Arduino15\packages\arduino\tools\CMSIS-Atmel\1.1.0/CMSIS/Device/ATMEL/samd.h:105, from C:\Users\User\AppData\Local\Ardui..
IT 2012. 3. 28.
AVR delay함수 사용시 __builtin_avr_delay_cycles 에러처리
걍 쉽게 util/delay.h 의 함수를 사용했는데 떵 하니 에러가 뜬다. 찬찬히 보지 말고 걍 아래 솔루션으로 직행결론은 파라메터를 정수를 넣지말고 소수점을 가진 값으로 넣어주자_delay_us(1); 머 이렇다고 하면 _delay_us(1.0); 이렇게 해주면 간단히 해결 ^^error: __builtin_avr_delay_cycles expects an integer constant.해결책 링크 : http://savannah.nongnu.org/bugs/?34278캡쳐해서 간단히 올리면 아래와 같이 처리하기..