sslupsky

Results 50 issues of sslupsky

I noticed the following two declarations in EEPROM.cpp https://github.com/cmaglie/FlashStorage/blob/18c021255ca8b6962bbcdd9b1f60a6ed6f2311e0/src/FlashAsEEPROM.cpp#L24 https://github.com/cmaglie/FlashStorage/blob/18c021255ca8b6962bbcdd9b1f60a6ed6f2311e0/src/FlashAsEEPROM.cpp#L74 This allocates quite a bit of RAM (1K) when you are not using the EEPROM emulation. Would it be advantageous...

Could you please provide an example combining your sensor example with sleep?

Is there a plan to add support for the SAMD arduinos? Perhaps integrating your SimplyAtomic library with this one? https://github.com/wizard97/SimplyAtomic

I think I may have found one issue here: https://github.com/wizard97/Embedded_RingBuf_CPP/blob/bfe49d18f900220527f130c4a170369d2968493b/src/RingBufCPP.h#L214-L215 Do these variables need to be declared "volatile"? When I compiled a sketch without the volatile declaration, the isEmpty() member...

A useful enhancement to the arduino cli would be the option to generate a compile_commands.json file. This can be used by Microsoft's Visual Studio Code (vscode) application to configure the...

type: enhancement
status: waiting for information
topic: code

I am attempted to burn the bootloader to a custom SAMD21 board. When I "make r", the code compiles and I receive an error message when I get to the...

I encountered a problem when using the Microchip PACK for the atsamd51 series MCU's. The first issue appears to be that pyOCD cannot determine the RAM layout. The second problem...

bug
target
under-investigation

**Describe the bug** Addon manager does not refresh when running latest 0.20 **To Reproduce** Steps to reproduce the behavior: 1. Tools->Addon manager 2. Select any addon in the list (example...

bug

The documentation for west here https://docs.zephyrproject.org/latest/application/index.html#creating-an-application indicates that building Zephyr or creating an application in a directory with spaces anywhere on the path is not supported. I have a project...

Encountered the following error when attempting to compile a sketch using CmdMessenger: ``` Arduino-CmdMessenger/CmdMessenger.cpp:492:9: error: invalid conversion from 'char' to 'char*' [-fpermissive] return '\0'; ``` The function is defined to...