initial project structure

This commit is contained in:
Jonas_Jones 2022-08-30 22:51:07 +02:00
parent 7179e83fa2
commit bde52a6e9b
17 changed files with 104 additions and 13 deletions

View file

@ -2,7 +2,10 @@
<module type="JAVA_MODULE" version="4"> <module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true"> <component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output /> <exclude-output />
<content url="file://$MODULE_DIR$" /> <content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>

7
.idea/discord.xml generated Normal file
View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DiscordProjectSettings">
<option name="show" value="PROJECT_FILES" />
<option name="description" value="" />
</component>
</project>

4
.idea/misc.xml generated
View file

@ -1,9 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="DiscordProjectSettings">
<option name="show" value="ASK" />
<option name="description" value="" />
</component>
<component name="ProjectRootManager"> <component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" /> <output url="file://$PROJECT_DIR$/out" />
</component> </component>

18
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/openvdb/io",
"/home/jonas_jones/GitHub/PI-server-rack/arduino"
],
"defines": [],
"compilerPath": "/sbin/clang",
"cStandard": "c17",
"cppStandard": "c++14",
"intelliSenseMode": "linux-clang-x64"
}
],
"version": 4
}

3
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"C_Cpp.errorSquiggles": "Disabled"
}

View file

@ -1,8 +0,0 @@
[package]
name = "hello_world"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
arduino/README.md Normal file
View file

@ -0,0 +1 @@
# Arduno module

9
arduino/arduino.ino Normal file
View file

@ -0,0 +1,9 @@
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}

17
desktop/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "desktop"
version = "0.1.0"
authors = "Jonas_Jones"
edition = "2021"
description = "The desktop module of the PI-server-rack project."
documentation = "https://github.com/JonasJones/PI-server-rack"
readme = "README.md"
homepage = "https://jonasjones.me/PI-server-rack"
repository = "https://github.com/J-onasJones/PI-server-rack"
license = "MIT OR Apache-2.0"
keywords = ["server", "raspberry pi"]
categories = ["config"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
desktop/README.md Normal file
View file

@ -0,0 +1 @@
# Desktop (PC/MAC) module

19
pi-master/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "pi-master"
version = "0.1.0"
authors = "Jonas_Jones"
edition = "2021"
description = "The Raspberry Pi master module of the PI-server-rack project."
documentation = "https://github.com/JonasJones/PI-server-rack"
readme = "README.md"
homepage = "https://jonasjones.me/PI-server-rack"
repository = "https://github.com/J-onasJones/PI-server-rack"
license = "MIT OR Apache-2.0"
keywords = ["server", "raspberry pi"]
categories = ["config"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
pi-master/README.md Normal file
View file

@ -0,0 +1 @@
# Raspberry PI master module

3
pi-master/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

17
pi-slave/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "pi-slave"
version = "0.1.0"
authors = "Jonas_Jones"
edition = "2021"
description = "The Raspberry Pi slave module of the PI-server-rack project."
documentation = "https://github.com/JonasJones/PI-server-rack"
readme = "README.md"
homepage = "https://jonasjones.me/PI-server-rack"
repository = "https://github.com/J-onasJones/PI-server-rack"
license = "MIT OR Apache-2.0"
keywords = ["server", "raspberry pi"]
categories = ["config"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
pi-slave/README.md Normal file
View file

@ -0,0 +1 @@
# Raspberry PI slave module

3
pi-slave/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}