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:
parent
39eb7fd053
commit
4f54f78187
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal 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"
|
@ -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"
|
||||
|
@ -1,3 +1,4 @@
|
||||
# codecaster
|
||||
# Codecaster
|
||||
*Empower Your Typing, Cast Your Spells*
|
||||
|
||||
A custom keyboard and its firmware.
|
||||
|
0
docs/bom.csv
Normal file
0
docs/bom.csv
Normal 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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user