e-bike-tracker-device/src/main.rs

11 lines
263 B
Rust
Raw Normal View History

2022-06-10 01:32:52 +02:00
mod modem;
2022-06-10 01:28:39 +02:00
use esp_idf_sys as _; // If using the `binstart` feature of `esp-idf-sys`, always keep this module imported
fn main() {
2022-06-10 01:32:52 +02:00
println!("Starting GPRS ...");
// TODO: start sim module
// TODO: connect to GPRS
println!("GPRS started ...");
2022-06-10 01:28:39 +02:00
}