AT91RM3400-DK Atmel, AT91RM3400-DK Datasheet - Page 58

KIT DEV FOR AT91RM3400

AT91RM3400-DK

Manufacturer Part Number
AT91RM3400-DK
Description
KIT DEV FOR AT91RM3400
Manufacturer
Atmel
Series
AT91SAM Smart ARMr
Type
MCUr
Datasheets

Specifications of AT91RM3400-DK

Contents
Evaluation Board, Software and Documentation
Processor To Be Evaluated
AT91RM3400
Data Bus Width
32 bit
Interface Type
RS-232, USB
For Use With/related Products
AT91RM3400
Lead Free Status / RoHS Status
Contains lead / RoHS non-compliant
Table 17. Overloading a Method without the Overloading of the Open Service Function.
58
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;
AT91RM3400
This also can be done directly by overloading the method after the use of
vice>
method:
Overloading AT91F_ChildMethod by My_ChildMethod
// My_ChildMethod will replace AT91F_ChildMethod
char My_ChildMethod ()
{
}
// Allocation of the service structure
AT91S_Service service;
// Opening of the service
AT91PS_Service pService =
AT91F_OpenService(&service);
// Overloading ChildMethod default value
pService->ChildMethod= My_ChildMethod;
AT91F_Open_<Ser-
1790A–ATARM–11/03

Related parts for AT91RM3400-DK