HD64F38024DV Renesas Electronics America, HD64F38024DV Datasheet - Page 520

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
void *malloc(size_t size)
Description:
Header file:
Parameters:
Example:
Remarks:
void *realloc(void *ptr, size_t size)
Description:
Header file:
Parameters:
Example:
Remarks:
506
Return values:
Return values:
Allocates a storage area.
<stdlib.h>
Normal:
<stdlib.h>
Normal:
size
size
Changes the size of a storage area to a specified value.
ptr
#include <stdlib.h>
size_t size;
void *ret;
The malloc function allocates a storage area of a specified number of bytes by
size.
#include <stdlib.h>
size_t size;
void *ptr, *ret;
The realloc function changes the size of the storage area specified by ptr to the
number of bytes specified by size. If the newly allocated storage area is smaller
than the old one, the contents are left unchanged up to the size of the newly
allocated area.
If the storage area pointed by ptr was not allocated by the calloc, malloc, or
realloc function, or if the area has already been released by the free or realloc
function, correct operation is not guaranteed.
Abnormal:
Abnormal:
ret=malloc(size);
ret=realloc(ptr, size);
Starting address of allocated storage area
If storage allocation failed, or if size is 0: NULL
If storage area allocation failed, or if size is 0: NULL
Size in number of bytes of storage area to allocate
Starting address of storage area whose size has been changed
Starting address of storage area to be changed
Size of storage area in number of bytes after the change

Related parts for HD64F38024DV