Merge I2C command handler into main #18
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
Dependencies
No dependencies set.
Reference: Mikrokontrollersystemer-gruppe-4/mikrokontrollersystemer-prosjekt#18
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "output-fan-data-over-i2c"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #10
Closes #8
Closes #4
@ -59,3 +59,3 @@check_eeprom_is_ready();if (fan_num == 1){eeprom_update_byte(current_address_fan1, byte);eeprom_write_byte(0x30, byte);why write at a point? use current fan address so it can update the posision
Deleted in
d31f03b6c7@ -60,3 +60,3 @@if (fan_num == 1){eeprom_update_byte(current_address_fan1, byte);eeprom_write_byte(0x30, byte);current_address_fan1++;either fix or delete
Deleted in
d31f03b6c7@ -100,0 +105,4 @@if (fan_num == 1){check_eeprom_is_ready();return eeprom_read_byte(0x30 + pos);start address, pos?
Deleted in
d31f03b6c7@ -41,3 +41,4 @@// Reads all the dataPoints form EEPROMuint8_t read_data_point_speed_info(uint8_t fan_num, uint8_t *array);uint8_t read_single_data_point_speed_info(uint8_t fan_num, uint8_t pos);what is pos???
pos is data position, aka how many bytes into the readable area you want to read.
Deleted in
d31f03b6c7Closes #17