Skip to content

Commit

Permalink
Seproxyhal: default status_sent value upon app launch is unset
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Chapron committed Aug 30, 2023
1 parent 0fed1b8 commit 21ae53e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

## [0.2.9] - 2023-08-31

### Fixed
- Seproxyhal: default status_sent value upon app launch is unset.

## [0.2.8] - 2023-07-31

### Changed
Expand Down
1 change: 0 additions & 1 deletion speculos/mcu/seproxyhal.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ def __init__(self,
self.refreshed = False

self.status_event = threading.Event()
self.status_event.set()
self.socket_helper = SocketHelper(self._socket, self.status_event)
self.socket_helper.start()

Expand Down
2 changes: 1 addition & 1 deletion src/bolos/seproxyhal.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define SEPROXYHAL_TAG_STATUS_MASK 0xF0
#define SEPROXYHAL_TAG_GENERAL_STATUS 0x60

static bool tx_status = true;
static bool tx_status = false;
static uint32_t rx_length = 0;
static uint8_t last_tag;
static size_t next_length;
Expand Down

0 comments on commit 21ae53e

Please sign in to comment.