Skip to content

Commit f931ad4

Browse files
committed
Release 0.34
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent 50778af commit f931ad4

3 files changed

Lines changed: 55 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
0.34.0
2+
---
3+
- **core**
4+
- add regmap package to facilitate heapless driver development
5+
- PinInput+PinOutput HAL (#753, reloaded) (#795)
6+
- Add Device8I2C/SPI types and their logic (#801)
7+
8+
- **new devices**
9+
- **bno8x**
10+
- Add support for CEVA BNO08x 9DoF sensor (#809)
11+
- **hineyhsc**
12+
- Add Honeywell HSC TruStability SPI+I2C pressure sensor driver (#799)
13+
- **p25q16h**
14+
- added support for P25Q16H flash chip for xiao-ble target
15+
- **si5351**
16+
- add support for si5351 (#810)
17+
- **w25q80dv**
18+
- added support for W25Q80DV flash chip for xiao-ble target
19+
- **w5500**
20+
- initial version the driver (#788)
21+
22+
- **enhancements**
23+
- **ds3231**
24+
- DS3231 Alarm features (#805)
25+
- **general**
26+
- add simplest driver ports
27+
- **lis3dh**
28+
- add Update and Acceleration calls
29+
- use correct error handling and make configurable
30+
- **lsm9ds1**
31+
- avoid unnecessary heap allocations
32+
- **pixel**
33+
- add Grayscale2bit color (#817)
34+
- **scd4x**
35+
- add support for SCD41 single-shot measurements
36+
- remove dead code
37+
- update package to use standard methods
38+
- **si5351**
39+
- add many missing functions needed for convenient use.
40+
- **ssd1xxx**
41+
- break dependency from machine package (#812)
42+
- **test**
43+
- Add TestImageRGB888 and TestImageRGB555
44+
45+
- **bugfixes**
46+
- **quadrature**
47+
- add RP2350 to quadrature_interrupt.go
48+
- **pixel**
49+
- correct logic error in image size checks in pixel's tests
50+
- correct logic error in image size checks in pixel's tests (Monochrome)
51+
- correct RGB555 to RGBA conversion logic
52+
53+
154
0.33.0
255
---
356
- **new devices**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![PkgGoDev](https://pkg.go.dev/badge/tinygo.org/x/drivers)](https://pkg.go.dev/tinygo.org/x/drivers) [![Build](https://github.com/tinygo-org/drivers/actions/workflows/build.yml/badge.svg?branch=dev)](https://github.com/tinygo-org/drivers/actions/workflows/build.yml)
44

55

6-
This package provides a collection of over 100 different hardware drivers for devices such as sensors, displays, wireless adaptors, and actuators, that can be used together with [TinyGo](https://tinygo.org).
6+
This package provides a collection of over 130 different hardware drivers for devices such as sensors, displays, wireless adaptors, and actuators, that can be used together with [TinyGo](https://tinygo.org).
77

88
For the complete list, please see:
99
https://tinygo.org/docs/reference/devices/

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package drivers
22

33
// Version returns a user-readable string showing the version of the drivers package for support purposes.
44
// Update this value before release of new version of software.
5-
const Version = "0.33.0"
5+
const Version = "0.34.0"

0 commit comments

Comments
 (0)