print driven development
This commit is contained in:
parent
e0230679c2
commit
985ec56e2a
2 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
||||||
|
mod modem;
|
||||||
|
|
||||||
use esp_idf_sys as _; // If using the `binstart` feature of `esp-idf-sys`, always keep this module imported
|
use esp_idf_sys as _; // If using the `binstart` feature of `esp-idf-sys`, always keep this module imported
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
println!("Hello, world!");
|
println!("Starting GPRS ...");
|
||||||
|
// TODO: start sim module
|
||||||
|
// TODO: connect to GPRS
|
||||||
|
println!("GPRS started ...");
|
||||||
}
|
}
|
||||||
|
|
3
src/modem.rs
Normal file
3
src/modem.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
pub struct Modem {
|
||||||
|
// TODO: connect to GPRS
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue