AT91RM3400-AI-001 ATMEL [ATMEL Corporation], AT91RM3400-AI-001 Datasheet - Page 58

no-image

AT91RM3400-AI-001

Manufacturer Part Number
AT91RM3400-AI-001
Description
Manufacturer
ATMEL [ATMEL Corporation]
Datasheet
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-AI-001