Boolean constants
Register constants can be of type boolean. This page will show you how the set up boolean constants, as well as showcase all the code that can be generated from it.
Usage in TOML
The TOML file below shows how to set up a register list with two boolean constants. Note that in the TOML, the type of the constant is determined by the type of the literal value.
1# This will allocate a register constant with the name "supports_pre_filtering" of
2# data type boolean.
3[supports_pre_filtering]
4
5# The "type" property MUST be present and set to "constant".
6type = "constant"
7
8# The "value" property MUST be present for a boolean constant.
9# The value specified MUST be a boolean.
10value = true
11
12# The "description" property is OPTIONAL for a constant.
13# Will default to "" if not specified.
14# The value specified MUST be a string.
15description = "Will indicate **True** if the module supports data pre-filtering."
16
17
18[is_release_version]
19
20type = "constant"
21value = false
Note that the second constant does not have a description specified, meaning it will default to an empty string.
Below you will see how you can parse this TOML file and generate artifacts from it.
Usage with Python API
The Python code below shows
How to parse the TOML file listed above.
How to create an identical register list when instead using the Python API.
How to generate register artifacts.
Note that the result of the create_from_api
call is identical to that of the
parse_toml
call.
Meaning that using a TOML file or using the Python API is completely equivalent.
You choose yourself which method you want to use in your code base.
1# Standard libraries
2import sys
3from pathlib import Path
4
5# First party libraries
6from hdl_registers.generator.c.header import CHeaderGenerator
7from hdl_registers.generator.cpp.interface import CppInterfaceGenerator
8from hdl_registers.generator.html.page import HtmlPageGenerator
9from hdl_registers.generator.vhdl.register_package import VhdlRegisterPackageGenerator
10from hdl_registers.parser.toml import from_toml
11from hdl_registers.register_list import RegisterList
12
13THIS_DIR = Path(__file__).parent
14
15
16def parse_toml() -> RegisterList:
17 """
18 Create the register list by parsing a TOML data file.
19 """
20 return from_toml(name="caesar", toml_file=THIS_DIR.parent / "toml" / "constant_boolean.toml")
21
22
23def create_from_api() -> RegisterList:
24 """
25 Alternative method: Create the register list by using the Python API.
26 """
27 register_list = RegisterList(name="caesar")
28
29 register_list.add_constant(
30 name="supports_pre_filtering",
31 value=True,
32 description="Will indicate **True** if the module supports data pre-filtering.",
33 )
34
35 register_list.add_constant(
36 name="is_release_version",
37 value=False,
38 description="",
39 )
40
41 return register_list
42
43
44def generate(register_list: RegisterList, output_folder: Path):
45 """
46 Generate the artifacts that we are interested in.
47 """
48 CHeaderGenerator(register_list=register_list, output_folder=output_folder).create()
49 CppInterfaceGenerator(register_list=register_list, output_folder=output_folder).create()
50 HtmlPageGenerator(register_list=register_list, output_folder=output_folder).create()
51 VhdlRegisterPackageGenerator(register_list=register_list, output_folder=output_folder).create()
52
53
54def main(output_folder: Path):
55 generate(register_list=parse_toml(), output_folder=output_folder / "toml")
56 generate(register_list=create_from_api(), output_folder=output_folder / "api")
57
58
59if __name__ == "__main__":
60 main(output_folder=Path(sys.argv[1]))
See RegisterList.add_constant()
for more Python API details.
Generated code
See below for a description of the code that can be generated with these constants.
Note that the examples on this page set up a register list with only constants, no registers. This allowed of course, but albeit a little bit rare.
HTML page
See HTML file below for the human-readable documentation that is produced by the
generate()
call in the Python example above.
VHDL package
The VHDL code below is produced by the generate()
call in the Python example above.
Click the button to expand and view the code.
C++ interface
The C++ interface header code below is produced by the generate()
call in the Python
example above.
Click the button to expand and view the code.
C header
The C code below is produced by the generate()
call in the Python example above.