Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
diff --git a/firmware/drivers/generic_i2c.c b/firmware/drivers/generic_i2c.c index 31a6e58..a4f9a2f 100644 @@ -217,6 +217,7 @@ int i2c_add_node(const struct i2c_interface *iface) i2c_if[bus_index] = iface; iface->scl_output(); + iface->delay_thigh(); return bus_index; } diff --git a/firmware/drivers/tuner/si4700.c b/firmware/drivers/tuner/si4700.c index 1e2c188..9d1a588 100644 @@ -298,6 +298,8 @@ void si4700_init(void) /* enable the internal oscillator */ si4700_write_set(TEST1, TEST1_XOSCEN); sleep(HZ/2); + sleep(HZ/2); + sleep(HZ/2); #endif } |