AT91RM9200-CI-002 Atmel, AT91RM9200-CI-002 Datasheet - Page 97

no-image

AT91RM9200-CI-002

Manufacturer Part Number
AT91RM9200-CI-002
Description
IC ARM9 MCU 256 BGA
Manufacturer
Atmel
Series
AT91SAMr

Specifications of AT91RM9200-CI-002

Core Processor
ARM9
Core Size
16/32-Bit
Speed
180MHz
Connectivity
EBI/EMI, Ethernet, I²C, MMC, SPI, SSC, UART/USART, USB
Peripherals
POR
Number Of I /o
122
Program Memory Size
128KB (128K x 8)
Program Memory Type
ROM
Ram Size
48K x 8
Voltage - Supply (vcc/vdd)
1.65 V ~ 1.95 V
Oscillator Type
Internal
Operating Temperature
-40°C ~ 85°C
Package / Case
256-BGA
Lead Free Status / RoHS Status
Contains lead / RoHS non-compliant
Eeprom Size
-
Data Converters
-

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
AT91RM9200-CI-002
Manufacturer:
Atmel
Quantity:
10 000
Table 14-1.
1768I–ATARM–09-Jul-09
Default service behavior in ROM
// Defined in embedded_services.h
typedef struct _AT91S_Service {
} AT91S_Service, * AT91PS_Service;
// Defined in obj_service.c (in ROM)
char AT91F_MainMethod ()
{
}
char AT91F_ChildMethod ()
{
}
// Init the service with default methods
AT91PS_Service AT91F_OpenService(
AT91PS_Service pService)
{
}
char data;
char (*MainMethod) ();
char (*ChildMethod) ();
pService->data = 0;
pService->MainMethod =AT91F_MainMethod;
pService->ChildMethod=AT91F_ChildMethod;
return pService;
Overloading a Method with the Overloading of the Open Service Function
Note:
This can be done by writing a new function My_OpenService(). This new Open function must
call the library-defined function AT91F_Open_<Service>, and then update one or several
function pointers:
Calling the default function AT91F_Open_<Service> ensures that all methods and data are
initialized.
Overloading AT91F_ChildMethod by My_ChildMethod
// My_ChildMethod will replace
AT91F_ChildMethod
char My_ChildMethod ()
{
}
// Overloading Open Service Method
AT91PS_Service My_OpenService(
AT91PS_Service pService)
{
// Overloading ChildMethod default value
}
// Allocation of the service structure
AT91S_Service service;
// Opening of the service
AT91PS_Service pService =
My_OpenService(&service);
AT91F_OpenService(pService);
pService->ChildMethod= My_ChildMethod;
return pService;
AT91RM9200
97

Related parts for AT91RM9200-CI-002