at91rm3400 ATMEL Corporation, at91rm3400 Datasheet - Page 58

no-image

at91rm3400

Manufacturer Part Number
at91rm3400
Description
Atmel Advanced At91 Arm Microcontroller
Manufacturer
ATMEL Corporation
Datasheet

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
at91rm3400-AU-002
Manufacturer:
Atmel
Quantity:
10 000
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