-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Non-ASCII Characters for User-Provided String (#518)
* Convert Parameter Strings to UTF-8 * update dll and decode values with utf-8 * address comments * address comments * fix typo * Add automatic fallback and feature toggle * address comments * address comments * remove .env temporary * address comment * add codegen changes * add .env to gitignore * minor fix * fix indentation * modify encoding for missing functions
- Loading branch information
1 parent
9648bc6
commit 981e45f
Showing
7 changed files
with
155 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This is a sample nidaqmx-python configuration file. | ||
|
||
# To use it: | ||
# - Copy this file to your application's directory or one of its parent directories | ||
# (such as the root of your Git repository). | ||
# - Rename it to `.env`. | ||
# - Uncomment and edit the options you want to change. | ||
# - Restart any affected applications or services. | ||
|
||
# By default, nidaqmx-python on Windows uses nicai_utf8, the UTF-8 version of the NI-DAQmx C library. | ||
# If that is not available, it falls back to nicaiu, the MBCS (multibyte character set) version. You can override | ||
# this behavior by uncommenting the following option: | ||
|
||
# NIDAQMX_C_LIBRARY=nicaiu |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ test_results/ | |
htmlcov/ | ||
|
||
# Environments | ||
.env | ||
.venv | ||
|
||
# Built artifacts | ||
|
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
Oops, something went wrong.