David Brown | f52272c | 2017-07-12 09:56:16 -0600 | [diff] [blame] | 1 | mod area; |
David Brown | 6390277 | 2017-07-12 09:47:49 -0600 | [diff] [blame] | 2 | pub mod c; |
David Brown | f52272c | 2017-07-12 09:56:16 -0600 | [diff] [blame] | 3 | |
| 4 | // The API needs to be public, even though it isn't intended to be called by Rust code, but the |
| 5 | // functions are exported to C code. |
David Brown | 6390277 | 2017-07-12 09:47:49 -0600 | [diff] [blame] | 6 | pub mod api; |
David Brown | f52272c | 2017-07-12 09:56:16 -0600 | [diff] [blame] | 7 | |
David Brown | 65de6d1 | 2019-01-02 11:38:38 -0700 | [diff] [blame] | 8 | pub use crate::area::{AreaDesc, FlashId}; |