Skip to content

Commit

Permalink
version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoquesada committed Jan 4, 2020
1 parent f8c38e7 commit 32df6b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.firmware.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ 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] -
## [0.5.1] - 2020-01-03
### Added
- Firmware: Xbox One: rumbles when connected or switches joystick port.
- Firmware: esp-idf v3.3.1
- Firmware: SDP queries timeout after 3 seconds, enabling another SDP query to start.
- Firmware: improved logging

## [0.5] - 2019-12-15
### Added
Expand Down
2 changes: 1 addition & 1 deletion firmware/main/uni_hid_parser_xboxone.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,5 +241,5 @@ static void rumble(uni_hid_device_t* d) {
.loop_count = 0,
};

uni_hid_device_queue_report(d, (uint8_t*)&ff, sizeof(ff));
uni_hid_device_send_report(d, (uint8_t*)&ff, sizeof(ff));
}
6 changes: 3 additions & 3 deletions firmware/main/uni_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ int btstack_main(int argc, const char** argv) {
UNUSED(argv);

// Honoring with BT copyright + adding own message to avoid confusion
printf("Unijoysticle 2 (C) 2016-2019 Ricardo Quesada and contributors.\n");
printf("Unijoysticle 2 (C) 2016-2020 Ricardo Quesada and contributors.\n");
printf("Bluetooth stack: Copyright (C) 2017 BlueKitchen GmbH.\n");
printf("Firmware version: v0.5.1-unreleased\n");
printf("Firmware version: v0.5.1\n");
#if UNIJOYSTICLE_SINGLE_PORT
printf("Single port / 3-button mode enabled\n");
printf("Single port / 3-button mode enabled (Amiga/Atari ST compatible)\n");
#else
printf("Dual port / 1-button mode enabled\n");
#endif
Expand Down

0 comments on commit 32df6b5

Please sign in to comment.