HD64F38024DV Renesas Electronics America, HD64F38024DV Datasheet - Page 348

IC H8/SLP MCU FLASH 80QFP

HD64F38024DV

Manufacturer Part Number
HD64F38024DV
Description
IC H8/SLP MCU FLASH 80QFP
Manufacturer
Renesas Electronics America
Series
H8® H8/300L SLPr
Datasheets

Specifications of HD64F38024DV

Core Processor
H8/300L
Core Size
8-Bit
Speed
10MHz
Connectivity
SCI
Peripherals
LCD, PWM, WDT
Number Of I /o
51
Program Memory Size
32KB (32K x 8)
Program Memory Type
FLASH
Ram Size
1K x 8
Voltage - Supply (vcc/vdd)
1.8 V ~ 5.5 V
Data Converters
A/D 8x10b
Oscillator Type
Internal
Operating Temperature
-40°C ~ 85°C
Package / Case
80-QFP
Lead Free Status / RoHS Status
Lead free / RoHS Compliant
Eeprom Size
-

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
HD64F38024DV
Manufacturer:
Renesas Electronics America
Quantity:
10 000
#pragma inline
_ _inline
Description Format: #pragma inline (<function name>[,…])
Description:
Example:
Remarks:
334
_ _inline <type specifier> <function name>
<type specifier> _ _inline <function name>
Declares functions for which inline expansion is performed.
When #pragma inline declares a function, the function code is directly
generated at the place where it is called. The code for calling the function by
the JSR or BSR instruction is not generated.
#pragma inline (f)
int a,b,c;
int f(int x,int y)
{
}
void sub(void)
{
}
1. The functions in the first definition and declaration after the #pragma
2. Up to 63 functions can be specified in one #pragma inline directive.
3. When the function declared by #pragma inline or _ _inline satisfies
4. When a source program file includes an inline function description, be
return x+y;
a=f(b,c);
inline declaration having the same function names as in the #pragma
inline declaration are treated as the target functions.
The function is defined before the #pragma inline or _ _inline
specification.
The actual parameter type does not match the formal parameter type.
The maximum size of inline expansion is exceeded.
sure to specify static before the function declaration because an external
definition is generated even for a function specified by #pragma inline
one of the following conditions, inline expansion will not be performed:
A variable number of argmemts is used.
A parameter address is referenced.
An address of a function to be expanded is used to call the function.
or _ _inline. If static or inline(C++) is specified, an external definition
will not be created.
/* code a=b+c
/* Expanded directly to
/* Declares function f as */
/* an inline function
*/
*/
*/

Related parts for HD64F38024DV