This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "keystoked" | |
version = "0.1.0" | |
edition = "2021" | |
[features] | |
default = [] | |
defmt = [] | |
encoders = ["keystoked-config/encoders", "keystoked-builder/encoders"] | |
lighting = ["keystoked-config/lighting", "keystoked-builder/lighting"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is just a subsection of the code (the parts relevant to multi-core stuff) | |
// It won't "just work" | |
use rp2040_hal as hal; | |
use hal::multicore::{Multicore, Stack}; | |
use hal::pac; | |
use hal::sio::Sio; | |
use heapless::spsc::Queue; | |
// These are markers are used to indicate the beginning and end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Author: Riskable | |
# | |
# License: CC0 (public domain) | |
# | |
# Description: | |
# | |
# This script will temporarily disable (for a few seconds) any attached USB | |
# mice that also support emulating a joystick (the type that messes up game |