frankdownunder

Results 10 comments of frankdownunder

Hi all, It doesnt seem like this has been fixed yet?

For what it is worth, I use the newest version of WSL, Windows Subsystem for Linux, which is now installed from the app store and is called just Ubuntu. (Note...

-Wsuggest-attribute=const might help to find any functions that are candidates.to be marked const.

Hi Mike, Slaff, I pushed some changes to my fork at https://github.com/frankdownunder/Sming on branch “feature/cmake” Install cmake and Ninja Please take a look at /opt/Sming/Sming/CmakeLists.txt and the readme file at...

Ninja seems to work now - a recent change to the compiler options was probably responsible for fixing it. So, to generate using ninja, cd build cmake .. -GNinja

Re PROGMEM, I will add this: execute_process(COMMAND ${CMAKE_CXX_COMPILER} "--help=target" OUTPUT_VARIABLE OUT) if(${OUT} MATCHES "mforce-l32") set(MFORCE32 1) else() set(MFORCE32 0) ENDIF() But this doesnt look to be enough - can you...

I am overjoyed to see your contribution. While I have used cmake for a long time at work, I was just a user - someone else looked after the itty...

I too have mixed feelings about IDF On the plus side, it is quite easy to set up – essentially you just have to set a list of source files...

@aemseemann Did you notice that Mike has refactored the makefiles? It is no longer the case that the sming library gets built separately. Indeed, its name includes a hash of...

@slaff I did as you suggested, works well now. Would you like me to amend the sample to: 1. Check the result of the connect 2. Try to send a...