nrf51 0.10.0

This crate has been renamed to `nrf51-pac`
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc = "Reader of register RESULT"]
pub type R = crate::R<u32, super::RESULT>;
#[doc = "Reader of field `RESULT`"]
pub type RESULT_R = crate::R<u16, u16>;
impl R {
    #[doc = "Bits 0:9 - Result of ADC conversion."]
    #[inline(always)]
    pub fn result(&self) -> RESULT_R {
        RESULT_R::new((self.bits & 0x03ff) as u16)
    }
}