aboutsummaryrefslogtreecommitdiff
path: root/src/raw/services/cfgnor.rs
blob: 1993267385868705e3eb3db086d7ef9e7a4110bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
use ::Result;


extern "C" {
    pub fn CFGNOR_Initialize(value: u8) -> Result;
    pub fn CFGNOR_Shutdown() -> Result;
    pub fn CFGNOR_ReadData(offset: u32, buf: *mut u32, size: u32) -> Result;
    pub fn CFGNOR_WriteData(offset: u32, buf: *mut u32, size: u32) -> Result;
    pub fn CFGNOR_DumpFlash(buf: *mut u32, size: u32) -> Result;
    pub fn CFGNOR_WriteFlash(buf: *mut u32, size: u32) -> Result;
}