Open gammeter opened 3 years ago
https://github.com/openiolink/io-link-master-shield-hat-sw/blob/58e085c5427bc9502fb216f75dd0c3fc3e739adf/src/board/HardwareRaspberry.cpp#L99
I think the above mentioned line should use chip_1 instead of chip_0.
chip_1
chip_0
This is a duplicate of #28
[...] after CS_chip1.init(...) there is a CS_chip0.set(false). But I think it should be CS_chip1.set(false);
CS_chip1.init(...)
CS_chip0.set(false)
CS_chip1.set(false);
https://github.com/openiolink/io-link-master-shield-hat-sw/blob/58e085c5427bc9502fb216f75dd0c3fc3e739adf/src/board/HardwareRaspberry.cpp#L99
I think the above mentioned line should use
chip_1
instead ofchip_0
.