Skip to content

Commit

Permalink
Don't set bit0 to highz
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpalladino committed Oct 3, 2024
1 parent 43afbbe commit 6d93ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcg_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ uint16_t __attribute__ ((noinline)) cmd_segment_high_z(){
// disable internal resistors
P1REN &= 0x00;
// put in input mode for high z state
P1DIR &= ~bits & ~BIT0;
P1DIR &= ~bits;

//Zero byte for success.
RF13MTXF_L = 0;
Expand Down

0 comments on commit 6d93ad9

Please sign in to comment.