Mobil_surveillance_system 1
Defines | Typedefs | Functions
Init.h File Reference

Low level init functions header file. More...

#include "msp430f2617.h"

Go to the source code of this file.

Typedefs

typedef unsigned char tBoolean

Functions

void __low_level_init (void)

Detailed Description

Low level init functions header file.

This file contains the low level functions prototypes.

Definition in file Init.h.


Typedef Documentation

typedef unsigned char tBoolean

bool type defination

Definition at line 22 of file Init.h.


Function Documentation

void __low_level_init ( void  )

Compiler-defined low-level initialization function to handle watchdog timer and oscillator

Definition at line 17 of file Init.c.

{
    // stop the watchdog timer 
    WDTCTL = WDTPW+WDTHOLD;
    // Set DCO to 16MHz
    BCSCTL1 = CALBC1_16MHZ;                    
    DCOCTL = CALDCO_16MHZ;
}
 All Data Structures Files Functions Variables Typedefs Enumerations Defines