![]() |
![]() |
The file contains functions to distinguish MSP430 devices.
Definition in file Devices430.c.
#include "Devices430.h"
Go to the source code of this file.
Data Structures | |
| struct | tsDeviceFeatures |
| Declaration of a struct type that holds all necessary device information. More... | |
Functions | |
| void | SetDevice (word wDeviceId) |
| This function accepts a Device ID and extracts the corresponding device information from the sDeviceFeatures struct. More... | |
| bool | DeviceHas_TestPin (void) |
| Function to check if current device has a test pin. More... | |
| bool | DeviceHas_CpuX (void) |
| Function to check if current device has the extended CPUX. More... | |
| bool | DeviceHas_DataQuick (void) |
| Function to check if current device supports DataQuick. More... | |
| bool | DeviceHas_FastFlash (void) |
| Function to check if current device supports FastFlash. More... | |
| bool | DeviceHas_EnhVerify (void) |
| Function to check if current device supports EnhVerify. More... | |
| bool | DeviceHas_JTAG (void) |
| Function to check if current device supports JTAG. More... | |
| bool | DeviceHas_SpyBiWire (void) |
| Function to check if current device supports SpyBiWire. More... | |
| word | Device_RamStart (void) |
| This function returns the start address of the device's RAM. More... | |
| word | Device_RamEnd (void) |
| This function returns the end address of the device's RAM. More... | |
| word | Device_MainStart (void) |
| This function returns the start address of the device's main memory. More... | |
| word Device_MainStart | ( | void | ) |
This function returns the start address of the device's main memory.
Definition at line 221 of file Devices430.c.
| word Device_RamEnd | ( | void | ) |
This function returns the end address of the device's RAM.
Definition at line 213 of file Devices430.c.
| word Device_RamStart | ( | void | ) |
This function returns the start address of the device's RAM.
Definition at line 206 of file Devices430.c.
| bool DeviceHas_CpuX | ( | void | ) |
Function to check if current device has the extended CPUX.
Definition at line 164 of file Devices430.c.
| bool DeviceHas_DataQuick | ( | void | ) |
Function to check if current device supports DataQuick.
Definition at line 171 of file Devices430.c.
| bool DeviceHas_EnhVerify | ( | void | ) |
Function to check if current device supports EnhVerify.
Definition at line 185 of file Devices430.c.
| bool DeviceHas_FastFlash | ( | void | ) |
Function to check if current device supports FastFlash.
Definition at line 178 of file Devices430.c.
| bool DeviceHas_JTAG | ( | void | ) |
Function to check if current device supports JTAG.
Definition at line 192 of file Devices430.c.
| bool DeviceHas_SpyBiWire | ( | void | ) |
Function to check if current device supports SpyBiWire.
Definition at line 199 of file Devices430.c.
| bool DeviceHas_TestPin | ( | void | ) |
Function to check if current device has a test pin.
Definition at line 157 of file Devices430.c.
| void SetDevice | ( | word | wDeviceId | ) |
This function accepts a Device ID and extracts the corresponding device information from the sDeviceFeatures struct.
| [in] | wDeviceId | Device ID (determined at runtime) |
Definition at line 144 of file Devices430.c.