Results 228 comments of Tilen Majerle

Original K&R + adding tabs to spaces is the way to go with my rules written here.

K&R does not have *naming rules* and it won't change variable name or declaration order as per my style. So it means that you cannot 100% automate your code with...

> Many IDE and editors use clang-format to format code, like VSCode, Clion, Visual Studio, QtCreator. > > clang-format style docs: https://clang.llvm.org/docs/ClangFormatStyleOptions.html > > `BasedOnStyle: GNU` may help Can you...

I came up with this so far. Do you know how to align macro definitions to certain column? ``` --- Language: Cpp BasedOnStyle: GNU IndentWidth: 4 AllowShortBlocksOnASingleLine: Empty AllowShortFunctionsOnASingleLine: None...

@riccardobritti82 can you share the sequence?

In general, with current (poor) approach, MCU DMA configuration is hard, but newer MCUs support IDLE line detection where you can also handle DMA by software. In general, ESP should...

There is a room for ESP improvements. I think Espressif should add this feature just like it is implemented in Sim800/900 where you have option to choose how to work.

I've been asking for better AT+CIPSTART implementation with AT+CIPSTARTEX, where application doesn't set connection number by itself. Instead, we should do it like that: ``` -> AT+CIPSTARTEX="TCP",and_other_thingsCRLF

How to make UDP server to be discovered by Alexa?

Indeed, but ESP AT syntax is forcing me to use one IP. So which one should I use to get discovered by someone on known port? Is there a way...