Ivan Grokhotkov

Results 403 comments of Ivan Grokhotkov

To test: * with `pytest`: * `echo CONFIG_EXAMPLE_UART_NUM=0` > sdkconfig * `idf.py build` * `pytest` Result is that the message sent via dut.write gets logged on console, but the app...

> What really confuses me is how to add on AFR this CMakeLists.txt from libnmea-esp32 on AFR-CMakeLists.txt. You don't :) You need to put this repository into a subdirectory of...

Could you please attach the raw NMEA message lines that are parsed incorrectly? For example, you can print the message received from UART to console before passing it to nmea_parse....

The output produced by libnmea looks pretty much spot on... Are you converting between decimal and degree/minutes/second representations correctly? Let's look at this message: ``` $GPRMC,134545.00,A,1028.21100,N,06647.53643,W,0.185,,020621,,,A*66 ``` libnmea output from...

In that case I recommend you to check https://en.wikipedia.org/wiki/Geographic_coordinate_conversion#Change_of_units_and_format. libnmea uses the 2nd format mentioned, "degrees and decimal minutes". You need to convert either to decimal degrees (used in, for...

Hi @Yoimer, sorry I didn't reply before. Did you manage to get it working? The logic you have linked is fine, except that longitude cardinal can not be `S` and...

Getting this issue on macOS as well. Shouldn't this unwinding code be only added to libgcc build if it is being built for linux target?

Thanks, this fixes the issue on macOS.

Now implemented and merged in https://github.com/pellepl/spiffs/pull/278 + https://github.com/pellepl/spiffs/pull/287.

Very nice tool! I would like one thing to be clarified, regarding SPIFFS file names. Some environments where SPIFFS is used assume that all file names stored in SPIFFS start...