-
Notifications
You must be signed in to change notification settings - Fork 177
DAQmx code generator for error_codes.py and constants.py using scrapigen metadata #215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
10b1bbd
Create error code mako with enums.py containing error codes and gener…
f2eb5aa
Add helper functions to format enums metadata
73e5565
Create constants mako file to generate constants.py file with the hel…
9e1b171
Generated out files for constants
f08d6fd
Merge branch 'master' of https://github.com/ni/nidaqmx-python into us…
5d19d59
Updated codegen import in constants.mako file
abd5f1b
Updated enums metadata in enums.py
5b3c035
Updated enumhelpers.py to generate expected constants.py file
53c3bf7
Generated constants and error codes after enums metadata from scrapigen
872fd8c
Moved NullHandler in logger to _init_.py and removed NullHandler addi…
Mounikabattu20 9e4b3f8
Removed unused logger
Mounikabattu20 d0d7f1e
Updated enums metadata from Scrapigen
Mounikabattu20 78a013d
Updated logic to produced expected constants.py
Mounikabattu20 8b0dacc
Generated constants.py file
Mounikabattu20 56db50d
Merge branch 'master' into users/vikram/generate-error-codes-py-file
MounikaBattu17 cb7788a
Added python_enum for Impedance1
Mounikabattu20 b8a0746
Fixed lint errors
Mounikabattu20 dc9b372
Updated enums metadata from Scrapigen
Mounikabattu20 626638b
Removed python_enum variable
Mounikabattu20 8c646a0
Fixed lint errors in attribute.py
Mounikabattu20 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
"""NI-DAQmx code generator.""" | ||
import logging | ||
|
||
|
||
_logger = logging.getLogger(__name__) | ||
_logger.addHandler(logging.NullHandler()) |
This file contains hidden or 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 hidden or 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from .attributes import attributes | ||
from .script_info import script_info | ||
from .enums import enums | ||
|
||
metadata = {"attributes": attributes, "script_info": script_info} | ||
metadata = {"attributes": attributes, "script_info": script_info, "enums": enums} |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.