コード例 #1
0
ファイル: platform.c プロジェクト: KuanYuChen/mansos
//----------------------------------------------------------
//      Init the platform as if on cold reset
//----------------------------------------------------------
void initPlatform(void)
{
    msp430Init();
#if USE_SERIAL_NUMBER
#warning No serial number for testbed mote
#endif
}
コード例 #2
0
ファイル: platform.c プロジェクト: atiselsts/osw
//----------------------------------------------------------
//      Init the platform as if on cold reset
//----------------------------------------------------------
void initPlatform(void)
{
    msp430Init();
#if USE_SERIAL_NUMBER
    serialNumberInit();
#endif
    // make sure radio is off when it is not used
    if (amb8420Init == NULL) {
        amb8420EnsureOff();
    }
}
コード例 #3
0
ファイル: platform.c プロジェクト: KuanYuChen/mansos
//----------------------------------------------------------
//      Init the platform as if on cold reset
//----------------------------------------------------------
void initPlatform(void)
{
    msp430Init();
#if USE_SERIAL_NUMBER
    serialNumberInit();
#endif
#if USE_USER_BUTTON
    userButtonInit();
#endif
#if !USE_EXT_FLASH
    // make sure the flash chip is in low power mode
    mdelay(10);
    m25pxx_init_low_power();
    hw_spiBusOff(M25PXX_SPI_ID);
#endif
}