moving around, prepping rs

unstable
Penguin 4 years ago
parent 9b010df133
commit 4dba5457ca

@ -1,6 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "testing_rust_again"
name = "ePenguin-igloo"
version = "0.1.0"

@ -1,5 +1,5 @@
[package]
name = "testing_rust_again"
name = "ePenguin-igloo"
version = "0.1.0"
authors = ["Penguin <...>"]
edition = "2018"

@ -0,0 +1,40 @@
# ePenguin-Igloo
### What is Igloo?
Igloo is a package and project manager. It is used for bare metal (for now only bare metal) embedded systems. In the embedded world, there is a big gap between how one would write code for embedded systems between manufacturers. As of today, 7/2/20, there is really no easy way to go about writing code for any embedded system from scratch. Most of the time, you need to download headers from some unknown location, figure out your hardware interface, find the proper toolchain, etc. This forces embedded developers and engineers to spend a lot of unnecessary time on DevOps and less time on firmware engineering. Igloo aims to solve this problem.
### How does Igloo help with this problem?
This tool allows you to create projects for supported mcus instantly. As long as your hardware is supported, Igloo will just make the project for you. It also allows you to add pre-written software modules, just in case you don't want to write your own.
### Status Guide
| Icon | Description |
| --- | --- |
| :grey_exclamation: | Not supported |
| :exclamation: | In Development |
| :grey_question: | Unstable |
| :question: | Experimental |
| :heavy_check_mark: | Tentatively Working |
| :white_check_mark: | Stable |
##### Status Guide Description
- Not Supported: This means it is not currently supported. It does not mean it will never be supported.
- In Development: Yet to be released for use at all. We're working on it.
- Unstable: A version of this is out for public development, but it doesn't work yet.
- Experimental: A version of this is out for public developement and testing. It may or may not work.
- Tentatively Working: Some form of this works. It just may not be working in the right way yet.
- Stable: This works as far as we know. Any bugs are minor and should not interfere with use.
### Supported Platforms
| Platform | Status |
| --- | --- |
| Windows | :exclamation: |
| Linux | :exclamation: |
| MacOS | :exclamation: |
### Installation -- TBD
### Usage -- TBD
### How to contribute -- TBD

@ -0,0 +1 @@
penguin@penguin-pc.2963:1593735320

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

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1,38 +0,0 @@
use std::fs;
fn main()
{
println!("Hello, world!");
match fs::create_dir("a")
{
Err(why) => println!("! {:?}", why.kind()),
Ok(_) => {},
}
println!("We just made a new directory! Printing...\n");
match fs::read_dir(".")
{
Err(why) => println!("! {:?}", why.kind()),
Ok(paths) => for path in paths
{
println!("> {:?}", path.unwrap().path());
},
}
fs::remove_dir("a").unwrap_or_else(|why| {
println!("! {:?}", why.kind());
});
println!("We just removed that directory! Printing...\n");
match fs::read_dir(".")
{
Err(why) => println!("! {:?}", why.kind()),
Ok(paths) => for path in paths
{
println!("> {:?}", path.unwrap().path());
},
}
}
Loading…
Cancel
Save