You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not quite sure what's going on yet. I set this up on both Raspberry Pi 4 and 5 instances, more than 1 of each. But all the RPi 5 boxes are failing with this. The same error.
I figured out how to turn on logging, had to modify docker-compose.yml like so:
I also noticed there's no pipeline for building images here. Is that done manually? I'd be happy to help get that working too, if you're interested in helping with the RPi 5 issue.
Thanks! This is a really cool project.
The text was updated successfully, but these errors were encountered:
I didn't dive deep enough into the code and the Raspberry documentation to understand why exactly this one request throws an error, but as a temporary fix you can alter the GetBoardModel function in the following way:
// GetBoardModel returns the model number of the system board.func (m*Mailbox) GetBoardModel() (uint32, error) {
//return m.getUint32(TagGetBoardModel)return0, nil
}
After that run go build -o . ./... and you're good to go.
@cavaliercoder maybe you know what the issue might be right away from experience? Thank you!
Not quite sure what's going on yet. I set this up on both Raspberry Pi 4 and 5 instances, more than 1 of each. But all the RPi 5 boxes are failing with this. The same error.
I figured out how to turn on logging, had to modify
docker-compose.yml
like so:And I got this result:
(It just repeats on a loop after this)
I also noticed there's no pipeline for building images here. Is that done manually? I'd be happy to help get that working too, if you're interested in helping with the RPi 5 issue.
Thanks! This is a really cool project.
The text was updated successfully, but these errors were encountered: