Setting up the initial project.

Just changing some files as I get started. The main thing that I changed
is that the code in the project will not be using the rust STD, only
core. This is because we are writing keyboard firmware.
This commit is contained in:
Myrddin Dundragon 2025-04-07 20:31:29 -04:00
parent 39eb7fd053
commit 4f54f78187
5 changed files with 13 additions and 2 deletions

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "codecaster"
version = "0.0.0"

View File

@ -2,7 +2,7 @@
name = "codecaster"
version = "0.0.0"
edition = "2021"
description = "A custom keyboard and its firmware."
description = "Empower Your Typing, Cast Your Spells"
repository = "/myrddin/codecaster"
authors = ["CyberMages LLC <Software@CyberMagesLLC.com>", "Jason Travis Smith <Myrddin@CyberMages.tech>"]
readme = "README.md"

View File

@ -1,3 +1,4 @@
# codecaster
# Codecaster
*Empower Your Typing, Cast Your Spells*
A custom keyboard and its firmware.

0
docs/bom.csv Normal file
View File

View File

@ -1,5 +1,8 @@
//! A custom keyboard and its firmware.
// This is keyboard firmware so we will not be using the STD.
extern crate core as std;
mod project;