Kevin Schlosser

Results 1168 comments of Kevin Schlosser

We are actually in the process of overhauling the doxygen docstrings because of the 3000+ warnings that doxygen generates. so making changes for things like that we can do without...

also, sorry I didn't explain the whole config header file thing well enough in the first post. I was trying to think of the best way to explain it and...

question about naming.. This is legal code in C. ```c typedef struct some_struct { struct some_struct field; } some_struct; ``` This didn't work using breathe because of the type name...

also, I have a complete list of all of the doxygen directives if you want them. It might be useful if you are interested in making the jacadoc extension more...

It depends on what you are trying to compile. If you are compiling for the ESP32 and you are on a Windows desktop PC then you will need to use...

If you guys need any help with it at all lemme know. It looks like the current problem is scikit-build is not creating a proper environment at least on Windows...

I know where the problem is. in modbluetooth.c there is the inclusion of modbluetooth.h where the functions are declared but not where they are defined. They are defined in modbluetooth_nimble.c...

now I am not 100% sure as to why the functions are declared in a header file that the source file doesn't define. The macros should control the inclusion of...

Move the declarations from those functions out of modbluetooth.h and into the header files that have the matching source file where the functions are defined and the following code should...