Changed to using the volatile keyword for the port pointers.

This commit is contained in:
jakeg00dwin 2024-09-03 16:40:54 -07:00
parent 3cee05065a
commit 8c75dee9e0
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@
* Represents an individual relay.
*/
typedef struct Relay {
void *output_port;
volatile void *output_port;
uint8_t output_pin;
void *input_port;
volatile void *input_port;
uint8_t input_pin;
uint16_t make_time;
uint16_t break_time;