Skip to content

Commit

Permalink
Increase NRF interrupt-to-readout delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Luddi96 committed Apr 14, 2023
1 parent f661929 commit 39f9c89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ A: Make sure you selected "Arduino Nano ATmega328P **(Old Bootloader)**"

---
# Changelog:
### 2023-04-14: [Release V1.4.1]
### 2023-04-14: [Source - Rx]
- Increased NRF interrupt-to-readout delay
### 2023-03-31: [Release V1.4]
### 2023-03-31: [Readme]
- Added connection diagrams
Expand Down
2 changes: 1 addition & 1 deletion Source/BREmote_Rx/Communication.ino
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void initNRF()
//approx. 500us
void radioInterrupt()
{
delayMicroseconds(250);
delayMicroseconds(500);
bool tx_ds, tx_df, rx_dr;
radio.whatHappened(tx_ds, tx_df, rx_dr);

Expand Down

0 comments on commit 39f9c89

Please sign in to comment.