# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [1.2.0] - 2020-12-02 ### Added - support for fixed packet length mode via new method `set_packet_length_mode(PacketLengthMode.FIXED)` - new enum `options.PacketLengthMode` - new method `get_packet_length_mode()` - method `get_packet_length_bytes()` is now public - new method `set_packet_length_bytes()` - added configured packet length to `CC1101`'s string representation (`≤n` indicates variable length mode, `=n` fixed length mode) ## [1.1.0] - 2020-12-01 ### Added - method `disable_checksum()` to disable automatic CRC sum appending in TX mode and checking in RX mode ## [1.0.0] - 2020-09-02 ### Added - `CC1101` class providing - context manager to open SPI port - `transmit()` for buffered transmission - context manager `asynchronous_transmission()` for manual signal generation - `get_configuration_register_values()` to read all configuration registers - OOK modulation - configurable symbol rate & sync mode - optional manchester encoding - disabled data whitening - automatic calibration [Unreleased]: https://github.com/fphammerle/python-cc1101/compare/v1.2.0...HEAD [1.2.0]: https://github.com/fphammerle/python-cc1101/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/fphammerle/python-cc1101/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/fphammerle/python-cc1101/releases/tag/v1.0.0