Skip to content

Releases: electro-smith/libDaisy

v8.0.0 - Hardware PWM, QSPI Stability, CMake, and More

16 Jun 18:10
c6887c6

Choose a tag to compare

v8.0.0

Features

  • SSD1307 Driver
  • Drivers for SSD1327 and the SSD1351
  • DMA support for the SPI OLED Transport Drivers
  • Configurable timing delay to the CD4021 shift register driver
  • Hardware PWM

Bug Fixes

  • QSPI: Fix for a known instability issue. Resolves intermittent bootup issue where QSPI could set itself to write-protected mode.
  • USB Host: Added USBH MIDI source file to CMakeLists for CMake builds
  • I2C: Fixed issue with I2C4 not working
  • I2C: minor breaking change: Fixed inconsistency of address-shifting of ReadDataAtAddress and WriteDataAtAddress to match the other methods.
  • MIDI: Fixed an unrecoverable crash with UART transport if the input shorted to GND for a full UART frame.
  • System: Fixed inaccurate clock division factor for DelayMs and GetMs to be correct.
  • WavWriter: Fixed bug where the last samples of the recording were not being flushed to the output file.

Other

  • The GPIO/Pin migration has been completed within the library, and the dsy_gpio and dsy_gpio_pin structs are deprecated.
  • Minor improvements to daisy::Color type
  • Added explicit setters/getters to daisy::AnalogControl for the scale/offset values
  • Added status check methods for USB Host
  • Improvements to CMake builds
  • README updated with links to daisy.audio site.
  • Improved documentation, and cleaned up WM8731 driver
  • Added Hardware PWM example
  • Added WavWriter example

Bootloader

  • The included bootloader binaries have been updated to v6.3 - This version integrates the above QSPI changes, and improves the boot-jump sequence for apps running directly from QSPI memory.

Migration

I2C Address Shifting

There was an inconsistency between the generic Read and Write methods that automatically left-shifted the device address by one bit, and the ReadDataAtAddress and WriteDataAtAddress functions that required the user to manually shift the address by one.

The internal devices that were affected by this change have been updated internally so this change will have minimal breaking effects.
Those devices are:

  • PCM3060
  • MCP23x17

To migrate existing code for external device drivers any manual left-shifting of the device address for the ReadDataAtAddress or WriteDataAtAddress functions must be removed.

GPIO and Pin

Any remaining instances of dsy_gpio or dsy_gpio_pin should be converted to the newer GPIO and Pin structs.
The constant pin references for DaisySeed and DaisyPatchSM have both been updated to the new Pin struct.

Objects within libDaisy no longer accept the old types, and will need to be updated in application code.

Here are some examples of how to migrate from the old types to the new types.

//////////////////////////////////////////
// Initialization:
//////////////////////////////////////////
// Old:
dsy_gpio_pin pa1 = {DSY_GPIOA, 1};
dsy_gpio gpio1;
gpio1.mode = DSY_GPIO_OUTPUT_PP;
gpio1.pull = DSY_GPIO_NOPULL;
gpio1.pin = pa1;
dsy_gpio_init(&gpio1);

// New:
Pin pa1 = Pin(PORTA, 1);
GPIO gpio1;
gpio1.Init(pa1, GPIO::Mode::OUTPUT, GPIO::Pull::NOPULL);

//////////////////////////////////////////
// Read
//////////////////////////////////////////
// Old:
uint8_t state = dsy_gpio_read(&gpio1);
// New:
bool state = gpio1.Read();

//////////////////////////////////////////
// Write
//////////////////////////////////////////
// Old:
dsy_gpio_write(&gpio1, 1); // HIGH
dsy_gpio_write(&gpio1, 0); // LOW
// New:
gpio1.Write(true); // HIGH
gpio1.Write(false); // LOW

//////////////////////////////////////////
// Toggle
//////////////////////////////////////////
// Old:
dsy_gpio_toggle(&gpio1);
// New:
gpio1.Toggle();

New Contributors

v7.1.0

20 Sep 15:03
15e1dd5

Choose a tag to compare

v7.1.0

Features

  • Support for MIDI via USB Host has been added. (PR #611)
  • Four new OLED fonts were added: 4x6, 4x8, 5x8, and 6x7. (PR #619)

Bugfixes

  • Fixed issue with posting test results for contributor PRs form forks (PR #617)

v7.0.1

21 Feb 21:14

Choose a tag to compare

v7.0.1

Features

  • Change AudioHandle::Config to an aggregate type, allows for aggregate init. Doesn't break existing code. (#613)
  • Add SerialRead example, shows how to read via Serial over USB (#609)
  • Add SH1106 OLED driver (#590)

Bugfixes

  • Fix float range for Random::GetFloat() (#604)
  • Move SAI initialized check so it isn't a no-op (#589)

v7.0.0

21 Feb 19:51
0045bd3

Choose a tag to compare

v7.0.0

Features

Bugfixes

  • Very minor bugfix in CpuLoadMeter_gtest.cpp so that a number would no longer overflow when bitshifting left

Migrating

  • Updating an existing libDaisy install via git pull will require you to run git restore . --recurse-submodules before it will compile.
    • Note, this will also undo any local changes you may have to the library. Make sure to stash those!
  • If you clone a fresh copy of libDaisy with git clone https://www.github.com/electro-smith/libDaisy --recurse-submodules, this will not be necessary
  • Breaking changes:
    • GPIO::Mode::OUTPUT_OD renamed to GPIO::Mode::OPEN_DRAIN due to a name conflict collision
    • Compiled code size has increased by up to 7%

v6.0.0

20 Feb 18:09
3ec3bbe

Choose a tag to compare

v6.0.0

Features

  • bootloader: Add local BootloaderBlink example for testing the bootloader and its various configs (#599)
  • bootloader: Add four bin variants: internal / external DFU, and 10ms / 2000ms timeouts (#599)
  • core: Add USE_DAISYSP_LGPL flag to core/Makefile for DaisySP_LGPL support. (#601)
  • bootloader: added System::BootloaderMode::DAISY, System::BootloaderMode::DAISY_SKIP_TIMEOUT, and System::BootloaderMode::DAISY_INFINITE_TIMEOUT options to System::ResetToBootloader method for better firmware updating flexibility. (#599)

Bug fixes

  • Fix link to electro-smith website in README (#605)
  • bootloader: pins D0, D29 and D30 are no longer stuck when using the Daisy bootloader (#599)
  • Color: Fixed bug with init not setting the green value correctly (#596)

Bootloader

  • This version of libDaisy and greater will be compatible with any version of the Daisy bootloader, meaning you won't have to update the bootloader on your product if you want the latest changes to libDaisy.
  • However, for newer versions of the bootloader, you must use a compatible version of libDaisy.
    • Daisy bootloader v6.0 and up will only be compatible with libDaisy v5.3 and up.

v5.4.0 - MIDI, Seed 2 DFM, and more

22 Jun 00:18
ae9b45e

Choose a tag to compare

v5.4.0

Features

  • adc: added ConversionSpeed configuration to the AdcChannelConfig (#579)
  • board: Updated Daisy board definitions to use new Pin system (#581)
  • board: added official support for new Daisy Seed2 DFM hardware (built in compatibility with DaisySeed class).
  • device: added driver for SK9822 (#574)
  • examples: added a number of minimal examples for the Seed/Seed2DFM
  • gatein: added new Init function that is compatible with newer C++ Pin type.

Bug Fixes

  • patchsm: Corrected gate out pin assignment confusion added by (#417) as noted by apbianco and tele_player
  • midi: improvements to UART transport stability, and fixes to parser (#566, #564, #583)
  • qspi: fixed memory cache invalidation for Persistent Storage (#572)
  • spi: fixed issue with unpredictable pin states at end of transmission (#553, #559)

Other

  • build: removed redundant compile-time def from CMake build (#565)
  • docs: use explicit grouping; omit comments from output (#563)
  • docs: fix typo in GPIO guide (#567)

v5.3.0 - software SPI for OLED, and minor bug fixes

14 Dec 00:51
07a813a

Choose a tag to compare

v5.3.0

Features

  • driver: Software SPI transport SSD130x4WireSoftSpiTransport added for the OLED Display driver. (#551)

Bug Fixes

  • driver: Fixed a compiler error in Max11300Driver::WriteAnalogPinVolts()
  • driver: Fixed error reading multiple registers at once from the MPC23x17 GPIO expanders (#550)
  • seed: Fixed out of range pin definitions for extra GPIO on the Daisy Seed2 DFM (#544)
  • patchsm: Fixed issue where updating the audio callback params didn't update control samplerate (#543)

v5.2.0 - Legio, UART/MIDI Bugfix, and sensors galore

04 Aug 18:27
ef4cc6a

Choose a tag to compare

Features

  • board: added board support for Noise Engineering legio platform
  • audio: added output_compensation value to config struct to allow for post-scaling of uneven audio passthru levels.
  • util: added a multiply operator to the Color class for scaling a color by a single factor.
  • device: Added ICM20948 sensor device driver
  • device: Added DPS310 device driver
  • device: Added MPR121 device driver
  • device: Added APDS9960 device driver
  • device: Added TLV493D device driver.
  • device: Added neotrellis driver
  • device: Added neopixel driver

Bug fixes

  • uart: fixed bug with fifo-dma-receive mode that would result in erratic reads over time. Fixes issues with UART (TRS/DIN) MIDI parsing

v5.1.0 - Callbacks and Bug Fixes

25 May 15:37
6ae066d

Choose a tag to compare

v5.1.0

Features

  • tim: TimerHandle now has callbacks each time the Period has elapsed. These can be enabled with TimerHandle::Config::enable_irq at Init time.
  • bootloader: Working with the bootloader has been simplified. See the new guide for updates on usage
  • usb: USBHost class has added support for user callbacks on device connection, disconnection, and when the MSC class becomes active.
  • uart: Adds DMA RX and TX modes, similar to how they work on the I2C and SPI.
  • uart: Update function names to be more in line with the new DMA / Blocking scheme.
    • The old methods are wrappers for the new ones to preserve backwards compatibility, but will be removed in a future version.
    • Affected functions: PollReceive, PollTx, StartRx, RxActive, FlushRx, PopRx, Readable

Bug Fixes

  • util: PersistentStorage class had a bug where calling the RestoreDefaults function would cause a crash
  • usb: LL HAL files for USB were updated to prevent timing issues when running with optimization
  • spi: Add IRQ handlers for SPI2-5. These should work with DMA now.
  • midi: bugs related to running status bytes for note off, and single data-byte messages have been resolved

Other

  • build: core/Makefile has had the -fnortti flag added to match libDaisy's Makefile
  • bootloader: local version of daisy bootloader has been updated to improve stability
  • spi: Added examples for blocking TX and DMA TX, added a writeup explaining how to use the SPI on the Daisy
  • uart: Adds examples for common modes of communication, both DMA, blocking, FIFO, and mixed.

v5.0.0

26 Apr 16:23
4415145

Choose a tag to compare

v5.0.0

Breaking Changes

  • driver: MAX11300 driver interface changed considerably
  • spi: Order of arguments of the SpiHandle DMA functions changed
  • dma: SpiHandle previously used DMA1_Stream7, now uses DMA2_Stream2 and DMA2_Stream3

Features

  • spi: SpiHandle now has callbacks before and after a DMA transaction starts (can be used for software driven chip select)
  • spi: SpiHandle now supports simultaneous transmit and receive with DMA using SpiHandle::DmaTransmitAndReceive()
  • spi: added MultiSlaveSpiHandle that allows to connect to multiple SPI slave devices on a shared bus
  • driver: MAX11300 now supports multiple chips on a shared bus
  • driver: MAX11300 now uses DMA to handle updates without blocking
  • driver: MAX11300 now updates the chips continuously until manually stopped
  • driver: MAX11300 can now call a user-provided callback after an update is complete
  • debugging: added additional debugging aids to the HardFault handler
  • gatein: added invert init parameter for reading from different input circuits from the GateIn class.
  • ui: added OnUserInteraction virtual function to UI framework to allow for tracking user activity

Bug Fixes

  • logger: Added 10ms delay at the end of StartLog function. Without this, messages immediatly following the StartLog function were getting missed when wait_for_pc is set to true.
  • testing: debugging configuration now uses lldb debugging extension to support unit test debugging on macOS with Apple Silicon
  • driver: oled_ssd130x.h - Add the SpiHandle:Config struct to SSD130x4WireTransport:Config to allow full access to the SPI peripheral configuration.
  • hid: fixed issue in AnalogControl where computed coeff could be out of range with certain block sizes
  • driver: added missing alternate function pin mappings for SPI2, and UART for pins available on the patch_sm hardware
  • usb: fixed issue with MIDI output from USB
  • driver: fixed off-by-one error in qspi erase function.

Other

  • driver: improved debouncing for Switch, and Encoder classes (limiting debouncing to 1kHz max frequency internally).

Migrating

SPI

// Old
SpiHandle::Result DmaTransmit(uint8_t*            buff,
                              size_t              size,
                              SpiHandle::CallbackFunctionPtr callback,
                              void*               callback_context);
// New
SpiHandle::Result DmaTransmit(uint8_t*                            buff,
                              size_t                              size,
                              SpiHandle::StartCallbackFunctionPtr start_callback,
                              SpiHandle::EndCallbackFunctionPtr   end_callback,
                              void*                               callback_context);
// Same for DmaReceive and DmaTransmitAndReceive

MAX11300

// Old: MAX11300 takes no template arguments
MAX11300 max11300driver;
// New: MAX11300 takes number of chips as template argument
constexpr size_t num_devices = 4;
MAX11300<num_devices> max11300driver;

// Old: constructor only takes a config struct
max11300driver.Init(config);
// New: constructor takes a DMA buffer situated in non-cached and DMA-accessible memory
MAX11300Types::DmaBuffer DMA_BUFFER_MEM_SECTION max11300DmaBuffer;
max11300driver.Init(config, &max11300DmaBuffer);

// Old: most types are inside the MAX11300 classname scope
daisy::MAX11300::PIN_0
daisy::MAX11300::AdcVoltageRange
// New: types are in a separate namespace to keep them independent from the "num_devices" template argument
daisy::MAX11300Types::PIN_0
daisy::MAX11300Types::AdcVoltageRange

// Old: only a single chip was handled by the driver
max11300driver.ConfigurePinAsAnalogRead(daisy::MAX11300::PIN_0, daisy::MAX11300::AdcVoltageRange::NEGATIVE_5_TO_5);
max11300driver.ConfigurePinAsAnalogWrite(daisy::MAX11300::PIN_1, daisy::MAX11300::DacVoltageRange::NEGATIVE_5_TO_5);
// New: each function now takes an additional argument, the index of the chip
max11300driver.ConfigurePinAsAnalogRead(0, daisy::MAX11300Types::PIN_0, daisy::MAX11300Types::AdcVoltageRange::NEGATIVE_5_TO_5);
max11300driver.ConfigurePinAsAnalogWrite(1, daisy::MAX11300Types::PIN_1, daisy::MAX11300Types::DacVoltageRange::NEGATIVE_5_TO_5);

// Old: Update() synchronously updates the chip and blocks until the update is complete
max11300driver.Update(); // blocks
// New: - Start() works asynchronously in the background using DMA
//      - Start() will retrigger updates itself automatically, until stopped by calling Stop()
//      - A callback can be called after each update cycle that was completed successfully
void MyUpdateCompleteCallback(void* context) {
    // The context is the pointer you passed when calling `.Update()`
    // This callback comes from an interrupt, keep is fast.
}
max11300driver.Start(
    &MyUpdateCompleteCallback, // or nullptr if you don't need a callback. default: nullptr
    &someThingThatYouWantToGetPassedToYourCallback // callback context, or nullptr if not needed
);
// you don't have to specify the arguments, then the defaults will be used
max11300driver.Start();
// you can stop the auto update after you started it
max11300driver.Stop();