You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
414 B
19 lines
414 B
# Constant variables to be used across Kconfig options |
|
|
|
# Copyright (c) 2024 basalte bv |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
INT8_MIN := -128 |
|
INT16_MIN := -32768 |
|
INT32_MIN := -2147483648 |
|
INT64_MIN := -9223372036854775808 |
|
|
|
INT8_MAX := 127 |
|
INT16_MAX := 32767 |
|
INT32_MAX := 2147483647 |
|
INT64_MAX := 9223372036854775807 |
|
|
|
UINT8_MAX := 255 |
|
UINT16_MAX := 65535 |
|
UINT32_MAX := 4294967295 |
|
UINT64_MAX := 18446744073709551615
|
|
|