Dusan Cervenka
Dusan Cervenka
Hi. thank you for very quick response. Sorry i didn't get it much. in case of these settings: "doxdocgen.generic.returnTemplate": "@return {type} " // If this is enabled a bool return...
Hi, thank you for quick response. My current settings: ```json { "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools", "C_Cpp.default.browse.path": ["${workspaceFolder}/Firmware/pilot"], "C_Cpp.clang_format_style": "file", "C_Cpp.autocomplete": "Default", "C_Cpp.formatting": "clangFormat", "cmake.buildEnvironment": { "ARMGCC_DIR": "${workspaceFolder}/Tools/gcc-arm-none-eabi" }, "cmake.configureSettings": { "CMAKE_C_COMPILER_WORKS": "1",...
Hi, sorry for bothering you. I didn't know it is Cmake issue as it looked like yours. As mentioned above, in CMakeList i have `set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -D__FILENAME__='\"$(notdir $(abspath $
Thank you very much :) Windows is not supported in our application so it is fine. And you are understanding me correctly.
Same here. Above comments are looking not related to my case. I don't know what is wrong.
Solved: in my case svg app icon did the issue: ``` "build": { "compression": "store", "asar": "true", "win": { "target": "portable", "icon": "./html/img/logo.svg", "files": ["**/*", "!html/measurements/*"] }, "directories": { "app":...
Under Linux it cannot be even jpg as i did for windows. It has to be png.
No problem. Personally i don't need it. I saw NXP example where it make sense likely (app_srtm related). But generally it make sense to let user define timeout. If you...
It is pitty that this function has ability to be macro (and it is not) so we wouldn't need define hardcoded VRING_SIZE macro. Anyway instead of hardcoded VRING_SIZE value we...
@MichalPrincNXP Do you think we can replace VRING_SIZE definition? ```C #define VRING_SIZE1 (RL_BUFFER_COUNT * sizeof(struct vring_desc)) #define VRING_SIZE2 (VRING_SIZE1 + sizeof(struct vring_avail) + (RL_BUFFER_COUNT * sizeof(uint16_t)) + sizeof(uint16_t)) #define VRING_SIZE3...