HD64F38024DV Renesas Electronics America, HD64F38024DV Datasheet - Page 519

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 *calloc(size_t nelem, size_t elsize)
Description:
Header file:
Parameters:
Example:
Remarks:
void free(void *ptr)
Description:
Header file:
Parameters:
Example:
Remarks:
Return values:
Allocates storage areas and clears all bits in the allocated storage areas to 0.
<stdlib.h>
Normal:
nelem
elsize
Releases specified storage area.
<stdlib.h>
ptr
The calloc function allocates as many storage areas as specified by nelem, in as
Abnormal:
#include <stdlib.h>
size_t nelem, elsize;
void *ret;
many units of bytes as specified by elsize. The function also clears all the bits in
the allocated storage areas to 0.
#include <stdlib.h>
void *ptr;
The free function releases the storage area pointed by ptr, to enable reallocation
for use. If ptr is NULL, the function carries out nothing.
If the storage area attempted to release 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. Operation result of
referencing an already released storage area is also undefined.
free(ptr);
ret=calloc(nelem, elsize);
Starting address of allocated storage area
If storage allocation failed, or if either of the parameter is 0:
NULL
Number of elements
Number of bytes occupied by a single element
Address of storage area to release
505

Related parts for HD64F38024DV