blob: 980b1da193a174688ea21964f3ecf697443816e7 [file] [log] [blame]
Pieter De Gendtdfdebc92024-07-05 15:44:06 +02001# Constant variables to be used across Kconfig options
2
3# Copyright (c) 2024 basalte bv
4# SPDX-License-Identifier: Apache-2.0
5
6INT8_MIN := -128
7INT16_MIN := -32768
8INT32_MIN := -2147483648
9INT64_MIN := -9223372036854775808
10
11INT8_MAX := 127
12INT16_MAX := 32767
13INT32_MAX := 2147483647
14INT64_MAX := 9223372036854775807
15
16UINT8_MAX := 255
17UINT16_MAX := 65535
18UINT32_MAX := 4294967295
19UINT64_MAX := 18446744073709551615