-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bindings: add u32/SR_T_UINT32 support for config keys
Previous bindings for C++ and other languages lacked support for the uint32_t data type for config keys. Which terminated the program with the message: Exception: internal error The following PulseView commands reproduced the issue: $ pulseview -i /dev/null -I csv:single_column=1 $ pulseview -i /dev/null -I csv:first_column=1 $ pulseview -i /dev/null -I csv:logic_channels=1 $ pulseview -i /dev/null -I csv:start_line=1 $ pulseview -i /dev/null -I saleae:wordsize=1 $ pulseview -i /dev/null -I saleae:logic_channels=1 $ pulseview -i /dev/null -I vcd:numchannels=1 Add support for uint32_t data types in the C++, Python, and Ruby language bindings. [ gsi: separate stou32() helper ]
- Loading branch information
Showing
6 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters