-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes needed for Raspberry PI build on latest Raspbian #2281
base: main
Are you sure you want to change the base?
Conversation
Commit 7fcd7f7 changed this method. Signed-off-by: Eric Nelson <[email protected]>
Without this, we get an undefined symbol at link time. Signed-off-by: Eric Nelson <[email protected]>
The Url::resolve() calls in main.cpp appear to be backwards and should add the current working directory to the base (file://) instead of the reverse. Signed-off-by: Eric Nelson <[email protected]>
Without this, I saw lockups that prevented additional characters from being read in the getKey() routine. Signed-off-by: Eric Nelson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the URL fixes!
The getKey()
changes didn't seem to make any difference on my Pi. My keyboard inputs are being ignored both with and without this change. But if this change helps for you then let's keep it!
I'd ask that you change the library configuration that I commented on, then this will be good to merge.
@@ -40,6 +40,7 @@ target_link_libraries(tangram | |||
/opt/vc/lib/libbrcmGLESv2.so | |||
/opt/vc/lib/libvchiq_arm.so | |||
/opt/vc/lib/libvcos.so | |||
/usr/lib/arm-linux-gnueabihf/libatomic.so.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using just atomic
here seems to work on my pi. If it works on yours too, can you replace the path here with atomic
? I'd rather not hard-code libraries where it isn't necessary.
@matteblair Is it possible to use Tangram-es as an Navigation System with Route Directions on an Raspberry Pi 4? |
These updates are needed in order to build on the latest version of Raspberry PI O/S.