Skip to content

Instantly share code, notes, and snippets.

View alex5250's full-sized avatar
🇺🇦
#StandWithUkraine

Alex Zaslavskis alex5250

🇺🇦
#StandWithUkraine
View GitHub Profile
@alex5250
alex5250 / gist:d106770d3f746b060506cdd9bd685551
Last active July 7, 2023 17:50
Configure RPi Pico SDK configure on Fedora 38 Linux
#!/bin/bash
# Exit on error
set -e
if grep -q Raspberry /proc/cpuinfo; then
echo "Running on a Raspberry Pi"
else
echo "Not running on a Raspberry Pi. Use at your own risk!"
fi