Install PICO-FIDO in RP2040-zero
Pico-FIDO di RP2040-Zero Membuat FIDO2 Security Key dari Waveshare RP2040-Zero menggunakan firmware pico-fido, tanpa PicoKey App berbayar. Perangkat yang Dibutuhkan RP2040-Zero (Waveshare) Kabel USB-C PC/Laptop Windows + Chrome/Edge untuk testing Linux/macOS untuk compile firmware Langkah 1: Persiapan Clone pico-sdk git clone https://github.com/raspberrypi/pico-sdk ~/pico-sdk cd ~/pico-sdk git submodule update --init Clone pico-fido git clone https://github.com/polhenarejos/pico-fido ~/pico-fido cd ~/pico-fido git submodule update --init --recursive Langkah 2: Edit Source Code Dua perubahan kecil agar tombol BOOTSEL berfungsi sebagai touch button tanpa commissioning berbayar. Edit button.c nano ~/pico-fido/pico-keys-sdk/src/button.c Cari bagian ini di dalam fungsi button_wait , lalu hapus : uint32_t button_timeout = 0; if (phy_data.up_btn_present) { button_timeout = phy_data.up_btn * 1000; } if (button_timeout == 0) { return 0; } Ganti d...