HD64F38024DV Renesas Electronics America, HD64F38024DV Datasheet - Page 517

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
long strtol(const char *nptr, char **endptr, int base)
Description:
Header file:
Parameters:
Example:
Error conditions:
Remarks:
Return values:
Converts a number-representing string to a long type integer.
<stdlib.h>
Normal:
nptr
endptr
base
Abnormal:
#include <stdlib.h>
long ret;
const char *nptr;
char **endptr;
int base;
If the converted result overflows, ERANGE is set for errno.
The strtol function converts data, from the first numeral to the character
immediately before the first character that does not represent an integer,
into a long type integer.
In the address pointed by endptr, this function sets up a pointer to the first
character that does not represent an integer. If some characters that do not
represent an integer come before the first numeral, the value of nptr is set in this
address. If endptr is NULL, nothing is set in this address.
If the value of base is 0, data is converted according to section 10.1.1 (4),
Integers. If the value of base is 2 to 36, it indicates the radix of conversion,
where a (or A) to z (or Z) in the string to be converted are corresponded to
numbers 10 to 35. If a character that is not smaller than the base value is found
in the string to be converted, conversion stops immediately. A 0 after a sign is
ignored at conversion. Similarly, 0x (or 0X) at base 16 is ignored.
ret=strtol(nptr, endptr, base);
If the string pointed by nptr is beginning with a character that
does not represent an integer: 0
If the string pointed by nptr is beginning with a character that
represents an integer: Converted data as a long type integer
If the converted data overflows: LONG_MAX or LONG_MIN
depending on the sign of the string to be converted
Pointer to a number-representing string to be converted
Pointer to the storage area containing a pointer to the first
character that does not represent an integer
Radix of conversion (0 or 2 to 36)
503

Related parts for HD64F38024DV