pydebuggerconfig


Namepydebuggerconfig JSON
Version 3.11.2.44 PyPI version JSON
download
home_pageNone
SummaryA collection of tools to configure Microchip PKOB nano on-board debuggers
upload_time2024-03-22 09:38:12
maintainerNone
docs_urlNone
authorMicrochip Technology
requires_python>=2.7
licenseMIT
keywords microchip nedbg curiosity nano pkob nano debugger
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pydebuggerconfig
pydebuggerconfig is a utility for accessing the configuration information stored inside the PKOB nano on-board debugger,
typically found on Curiosity Nano kits.

## Who should use pydebuggerconfig?
Kit designers who are ready to personalize their new kit

## Prerequisite knowledge
In order for the PKOB nano on-board debugger to be aware of the properties and capabilities of the board in which
it is mounted, as well as the target device it will operate with, a "board configuration" and "device configuration"
is necessary.  This information is stored separately to the PKOB nano firmware, allowing field upgrades to be
performed with identical firmware on all deployed kits without any customization required.

The parameters stored in the configuration include PKOB nano features, program/debug interface capability,
board and manufacturer names and USB serial number as well as device specific parameters required for device
programming through drag and drop.

The configuration information is stored in flash memory and can be modified freely.  However, it is recommended
that this information is programmed into the PKOB nano during the kit manufacturing process and not altered
after deployment.

For board specific configuration data there are two identical sections in the configuration memory.  One section
is intended for factory settings programmed during production and one for settings that have been changed by the user.
The user section can be reverted to the factory settings by using the pydebuggerconfig utility.

### Device and Board XML files
The actual configuration data to be programmed into the PKOB nano debugger's configuration space is stored in XML files,
one file for the data concerning the debugger and kit itself and one file with data concerning the target device.
The board related files are stored in the _pydebuggerconfig/board-configs_ folder and the device specific files
are stored in the _pydebuggerconfig/device-configs_ folder.  pydebuggerconfig also supports XML files stored in
other folders by providing the full path to the files.

The specifications for the config XML files are stored in the _pydebuggerconfig/config-specification_ folder.
Each configuration file specifies which specification version to be used by the version registers in the XML file.
These are called CONFIG_FORMAT_MAJOR, CONFIG_FORMAT_MINOR and CONFIG_FORMAT_BUILD for board configuration files and
DEVICE_CONFIG_MAJOR, DEVICE_CONFIG_MINOR and DEVICE_CONFIG_BUILD for device configuration files.  The version of
the specification files are given by the file name.  Example:
A board config XML file with the following version registers
```
    <register name="CONFIG_FORMAT_MAJOR" value="1"/>
    <register name="CONFIG_FORMAT_MINOR" value="5"/>
    <register name="CONFIG_FORMAT_BUILD" value="47"/>
```
will refer to specification files _board_config_defines-1.5.47.xml_ and _board_config_defines-1.5.47.xsd_

## Usage
pydebuggerconfig can be used as a command-line interface or a library

### Command-line
for help, use:
```
pydebuggerconfig --help
```

#### Important note on order of command line arguments
It is recommended to put the action next to pydebuggerconfig on the command line.  This is in some cases important as
some of the command line arguments takes a list of values and if the action is placed next to such an argument the
action will be interpreted as one of the argument values.  Example:
```
WRONG: pydebuggerconfig -b board-configs/PIC16F18446-CNANO.xml -d device-configs/PIC16F18446-device-blob.xml -p SERNUM write
```
This will not work as the ``-p`` argument takes a list of registers, so ``write`` is interpreted as a register to preserve and no
action is found
```
CORRECT: pydebuggerconfig write -b board-configs/PIC16F18446-CNANO.xml -d device-configs/PIC16F18446-device-blob.xml -p SERNUM
```
This will work as the action comes first so it is not seen as a part of any of the arguments


#### Action: read
reads out the config from a board
* use -f to read from factory section instead of user section for board config
```
pydebuggerconfig read
```
This will read out both board and device config from the kit and print it in a human readable format

#### Action: write
writes config from board and/or device files
* use -b to specify board config XML file
* use -d to specify device config XML file
* use -f to write to factory section in addition to user section of board config
* use -p to preserve the value of one or more registers

To use bundled board and device files the path relative to pydebuggerconfig package is sufficient, i.e. _board-configs/\<board file\>_ and _device-configs/\<device file\>_.
```
pydebuggerconfig write -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml
```

#### Action: replace
replaces the value of one or more registers in config
* use -r to specify which registers to update
```
pydebuggerconfig replace -r SERNUM=MCHP0000111122223333 KITNAME="My new kit"
```

#### Action: show
to print the content of config xml files in a human readable format
* use -b to specify board config XML file
* use -d to specify device config XML file
```
pydebuggerconfig show -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml
```

#### Action: verify
to compare the content of config XML files with the config on a kit
* use -b to specify board config XML file
* use -d to specify device config XML file

To use bundled board and device files the path relative to pydebuggerconfig package is sufficient, i.e. _board-configs/\<board file\>_ and _device-configs/\<device file\>_.
```
pydebuggerconfig verify -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml
```

#### Action: restore
to restore board config to factory settings
```
pydebuggerconfig restore
```
This will copy the board config on the kit from the factory section to the user section

#### Action: version-update
to update the version of the board config in a kit
```
pydebuggerconfig version-update
```
This will update the version registers in the board config to the latest available spec version to allow new
registers to be supported. It  depends on back-compatibility, i.e. minor version updates only.  Note that this command
will not change the actual config settings.

#### Action: generate-hex
to generate a hex file from config xml files
* use -b to specify board config XML file
* use -d to specify device config XML file
```
pydebuggerconfig generate-hex -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml
```
This will generate an Intel-hex file with the XML files contents.  This file can then be programmed directly into the debugger.
This feature is most useful when making pre-programmed debuggers.

#### Action: list
to list all board-configurations and device-configurations which are bundled with the package
```
pydebuggerconfig list
```
This will show the contents of the config folders which are bundled with the package.

### Command-line switches
Many of these switches are optional, and some only apply to certain actions.  See the action details above.
* -b BOARD to specify board XML file.  Some actions require at least either a board XML file or a device XML file but
    not necessarily both.  Can be either an absolute path or a path relative to pydebuggerconfig folder,
    i.e. _board-configs/ATmega4809-CNANO.xml_.
* -d DEVICE to specify device XML file.  Some actions require at least either a device XML file or a board XML file but
    not necessarily both.  Can be either an absolute path or a path relative to pydebuggerconfig folder,
    i.e. _device-configs/ATmega4809-device-blob.xml_.
* -s SERIALNUMBER to specify the USB serial number of the kit/debugger to connect to when reading and writing config data.
    This is not the USB serial number to program into the config, it is the serial number of the debugger before any config
    has been written.  Sub-string matching on end of serial number is supported.  If this argument is omitted or set to an
    empty string pydebuggerconfig will connect to any PKOB nano debugger connected to the host if there is only one connected.
    If there are more than one matching debugger connected, pydebuggerconfig will just terminate with an error message.
* -S CONFIG_SERIALNUMBER to specify the USB serial number to program to the kit.  The serial number should be 20 ASCII characters.
    This option makes it possible to program a custom serial number to a kit while fetching the rest of the config parameters
    from a board config XML file.  Without this option the serial number will be fetched from the board config XML file
    (usually set to "FFFFFFFFFFFFFFFFFFFF").  Note that the new serial number will not latch (be used) until the debugger
    is rebooted.
* -p PRESERVE [PRESERVE ...] to specify registers that should not be updated when writing config data to the kit.  These registers
    will keep their current values even if new values are given in the provided config XML files.
* -r REGISTER [REGISTER ...] to specify register values to replace.  Only used with ``replace`` action.
* -f to access factory board config section.  For ``read`` it means read factory board config while for ``write`` it means
    write both factory and user board config.  There is no factory section for device config.
* -v to enable verbose output.
* -vv to enable debug output.
* -V to print pydebuggerconfig version number and exit.
* -R to print pydebuggerconfig release details and exit.

### Library
pydebuggerconfig can be used as a library using its "backend API".  For example:
```
# Instantiate backend (if more than one kit is connected a serial number must be provided as parameter to the Backend constructor)
from pydebuggerconfig.backend import Backend
pb = Backend()

# Write board configuration data to a kit, preserving KITNAME and setting custom USB serial number
board_config_string = pb.write_board_config("board-configs/ATmega4809-CNANO.xml", serial_number="MYSERIALNUMBER012345", preserve=['KITNAME'])
print("Written board config to kit:")
print(board_config_string)

# Write device configuration data to a kit
device_config_string = pb.write_device_config("device-configs/ATmega4809-device-blob.xml)
print("Written device config to kit:")
print(device_config_string)

# Update the name and serial number of a kit
registers = {'KITNAME': 'My new kitname', 'SERNUM': 'MYNEWSERIAL012345678'}
pb.replace(registers)

# Read out and print board configuration data from a kit
board_config_string = pb.read_board_config_as_string("board-configs/ATmega4809-CNANO.xml")
print("Board config from kit:")
print(board_config_string)

# Read out and print device configuration data from a kit
device_config_string = pb.read_device_config_as_string()
print("Device config from kit:")
print(device_config_string)

# Print the pydebuggerconfig package version
from pydebuggerconfig import __version__ as pydebuggerconfig_version
print("pydebuggerconfig version {}".format(pydebuggerconfig_version))

# In addition, the CLI-backend API is versioned for convenience
print("pydebuggerconfig backend API version: {}".format(pb.get_api_version()))
```

## Dependencies
pydebuggerconfig depends on pyedbglib for its transport protocol.  pyedbglib requires a USB transport library like libusb.
See pyedbglib package for more information.

## Supported tools
pydebuggerconfig only supports PKOB nano (nEDBG) debuggers.  These are typically found on Curiosity Nano kits.

## Linux systems
This package uses pyedbglib and other libraries for USB transport and some udev rules are required.  For details see the pyedbglib package: https://pypi.org/project/pyedbglib

# Changelog

## [3.11] - March 2024

### Added
- DSG-3022 Update documentation to describe how to use bundled configuration files
- DSG-5755 Add CLI catch-all exception handler to pydebuggerconfig
- DSG-5884 SAM-IoT Wx board configuration
- DSG-6060 Extend CONFIG to cater for immutable boot and boot row memtype
- DSG-6139 EBV-IoT Mirochip ATECC608 Secure Shield board configuration
- DSG-6144 List all available configurations through the CLI
- DSG-6510 Prepare pydebuggerconfig for new build commands

### Changed
- DSG-6990 Refactor pydebuggerconfig id_extension_tool backend to make it usable as a library

### Fixed
- DSG-2253 Pydebuggerconfig crashes when a single digit hex value is used for an ENUM register
- DSG-4169 PIC24FJ128GA705 device config is broken
- DSG-4725 Pydebuggerupgrade requirements ambiguity for python 2.7
- DSG-6852 Config words fail to write
- DSG-6991 Pydebuggerconfig id_extension_tool does not check 16-bit overflow


## [3.9] - December 2021

### Added
- DSG-2503 Added support for PIC18F16Q40 and PIC18F16Q41 Curiosity Nano boards
- DSG-5421 Added support for AVR DU and additional AVR DD devices
- DSG-3804 Added Python 3.9 support

### Changed
- DSG-5418 Added Python 3.10 metadata tag
- DSG-5543 Removed Python 3.6 metadata tag
- DSG-5417 Removed distutils usage

### Fixed
- DSG-2200 Handle missing exact specification version
- DSG-2230 Naming consistency audit
- DSG-2310 Clarification: -fa switch is "ALSO factory section" (not JUST factory section)
- DSG-2423 Python package zip artifact is missing pypi.md file
- DSG-2459 Python package broken on Py 2.7
- DSG-2576 Fix short form switches
- DSG-3061 Fuse protection not enabled on AVR EA Curiostiy Nano
- DSG-3104 Crash while replacing KEY2
- DSG-3111 Package version in Python wheel metadata does not match wheel version for wheels from non-master branches
- DSG-4328 Fixed -s confusion


## [3.5] - October 2020
- First public release to PyPi

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pydebuggerconfig",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=2.7",
    "maintainer_email": null,
    "keywords": "Microchip, nEDBG, Curiosity Nano, PKOB nano, debugger",
    "author": "Microchip Technology",
    "author_email": "support@microchip.com",
    "download_url": null,
    "platform": null,
    "description": "# pydebuggerconfig\npydebuggerconfig is a utility for accessing the configuration information stored inside the PKOB nano on-board debugger,\ntypically found on Curiosity Nano kits.\n\n## Who should use pydebuggerconfig?\nKit designers who are ready to personalize their new kit\n\n## Prerequisite knowledge\nIn order for the PKOB nano on-board debugger to be aware of the properties and capabilities of the board in which\nit is mounted, as well as the target device it will operate with, a \"board configuration\" and \"device configuration\"\nis necessary.  This information is stored separately to the PKOB nano firmware, allowing field upgrades to be\nperformed with identical firmware on all deployed kits without any customization required.\n\nThe parameters stored in the configuration include PKOB nano features, program/debug interface capability,\nboard and manufacturer names and USB serial number as well as device specific parameters required for device\nprogramming through drag and drop.\n\nThe configuration information is stored in flash memory and can be modified freely.  However, it is recommended\nthat this information is programmed into the PKOB nano during the kit manufacturing process and not altered\nafter deployment.\n\nFor board specific configuration data there are two identical sections in the configuration memory.  One section\nis intended for factory settings programmed during production and one for settings that have been changed by the user.\nThe user section can be reverted to the factory settings by using the pydebuggerconfig utility.\n\n### Device and Board XML files\nThe actual configuration data to be programmed into the PKOB nano debugger's configuration space is stored in XML files,\none file for the data concerning the debugger and kit itself and one file with data concerning the target device.\nThe board related files are stored in the _pydebuggerconfig/board-configs_ folder and the device specific files\nare stored in the _pydebuggerconfig/device-configs_ folder.  pydebuggerconfig also supports XML files stored in\nother folders by providing the full path to the files.\n\nThe specifications for the config XML files are stored in the _pydebuggerconfig/config-specification_ folder.\nEach configuration file specifies which specification version to be used by the version registers in the XML file.\nThese are called CONFIG_FORMAT_MAJOR, CONFIG_FORMAT_MINOR and CONFIG_FORMAT_BUILD for board configuration files and\nDEVICE_CONFIG_MAJOR, DEVICE_CONFIG_MINOR and DEVICE_CONFIG_BUILD for device configuration files.  The version of\nthe specification files are given by the file name.  Example:\nA board config XML file with the following version registers\n```\n    <register name=\"CONFIG_FORMAT_MAJOR\" value=\"1\"/>\n    <register name=\"CONFIG_FORMAT_MINOR\" value=\"5\"/>\n    <register name=\"CONFIG_FORMAT_BUILD\" value=\"47\"/>\n```\nwill refer to specification files _board_config_defines-1.5.47.xml_ and _board_config_defines-1.5.47.xsd_\n\n## Usage\npydebuggerconfig can be used as a command-line interface or a library\n\n### Command-line\nfor help, use:\n```\npydebuggerconfig --help\n```\n\n#### Important note on order of command line arguments\nIt is recommended to put the action next to pydebuggerconfig on the command line.  This is in some cases important as\nsome of the command line arguments takes a list of values and if the action is placed next to such an argument the\naction will be interpreted as one of the argument values.  Example:\n```\nWRONG: pydebuggerconfig -b board-configs/PIC16F18446-CNANO.xml -d device-configs/PIC16F18446-device-blob.xml -p SERNUM write\n```\nThis will not work as the ``-p`` argument takes a list of registers, so ``write`` is interpreted as a register to preserve and no\naction is found\n```\nCORRECT: pydebuggerconfig write -b board-configs/PIC16F18446-CNANO.xml -d device-configs/PIC16F18446-device-blob.xml -p SERNUM\n```\nThis will work as the action comes first so it is not seen as a part of any of the arguments\n\n\n#### Action: read\nreads out the config from a board\n* use -f to read from factory section instead of user section for board config\n```\npydebuggerconfig read\n```\nThis will read out both board and device config from the kit and print it in a human readable format\n\n#### Action: write\nwrites config from board and/or device files\n* use -b to specify board config XML file\n* use -d to specify device config XML file\n* use -f to write to factory section in addition to user section of board config\n* use -p to preserve the value of one or more registers\n\nTo use bundled board and device files the path relative to pydebuggerconfig package is sufficient, i.e. _board-configs/\\<board file\\>_ and _device-configs/\\<device file\\>_.\n```\npydebuggerconfig write -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml\n```\n\n#### Action: replace\nreplaces the value of one or more registers in config\n* use -r to specify which registers to update\n```\npydebuggerconfig replace -r SERNUM=MCHP0000111122223333 KITNAME=\"My new kit\"\n```\n\n#### Action: show\nto print the content of config xml files in a human readable format\n* use -b to specify board config XML file\n* use -d to specify device config XML file\n```\npydebuggerconfig show -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml\n```\n\n#### Action: verify\nto compare the content of config XML files with the config on a kit\n* use -b to specify board config XML file\n* use -d to specify device config XML file\n\nTo use bundled board and device files the path relative to pydebuggerconfig package is sufficient, i.e. _board-configs/\\<board file\\>_ and _device-configs/\\<device file\\>_.\n```\npydebuggerconfig verify -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml\n```\n\n#### Action: restore\nto restore board config to factory settings\n```\npydebuggerconfig restore\n```\nThis will copy the board config on the kit from the factory section to the user section\n\n#### Action: version-update\nto update the version of the board config in a kit\n```\npydebuggerconfig version-update\n```\nThis will update the version registers in the board config to the latest available spec version to allow new\nregisters to be supported. It  depends on back-compatibility, i.e. minor version updates only.  Note that this command\nwill not change the actual config settings.\n\n#### Action: generate-hex\nto generate a hex file from config xml files\n* use -b to specify board config XML file\n* use -d to specify device config XML file\n```\npydebuggerconfig generate-hex -b board-configs/ATmega4809-CNANO.xml -d device-configs/ATmega4809-device-blob.xml\n```\nThis will generate an Intel-hex file with the XML files contents.  This file can then be programmed directly into the debugger.\nThis feature is most useful when making pre-programmed debuggers.\n\n#### Action: list\nto list all board-configurations and device-configurations which are bundled with the package\n```\npydebuggerconfig list\n```\nThis will show the contents of the config folders which are bundled with the package.\n\n### Command-line switches\nMany of these switches are optional, and some only apply to certain actions.  See the action details above.\n* -b BOARD to specify board XML file.  Some actions require at least either a board XML file or a device XML file but\n    not necessarily both.  Can be either an absolute path or a path relative to pydebuggerconfig folder,\n    i.e. _board-configs/ATmega4809-CNANO.xml_.\n* -d DEVICE to specify device XML file.  Some actions require at least either a device XML file or a board XML file but\n    not necessarily both.  Can be either an absolute path or a path relative to pydebuggerconfig folder,\n    i.e. _device-configs/ATmega4809-device-blob.xml_.\n* -s SERIALNUMBER to specify the USB serial number of the kit/debugger to connect to when reading and writing config data.\n    This is not the USB serial number to program into the config, it is the serial number of the debugger before any config\n    has been written.  Sub-string matching on end of serial number is supported.  If this argument is omitted or set to an\n    empty string pydebuggerconfig will connect to any PKOB nano debugger connected to the host if there is only one connected.\n    If there are more than one matching debugger connected, pydebuggerconfig will just terminate with an error message.\n* -S CONFIG_SERIALNUMBER to specify the USB serial number to program to the kit.  The serial number should be 20 ASCII characters.\n    This option makes it possible to program a custom serial number to a kit while fetching the rest of the config parameters\n    from a board config XML file.  Without this option the serial number will be fetched from the board config XML file\n    (usually set to \"FFFFFFFFFFFFFFFFFFFF\").  Note that the new serial number will not latch (be used) until the debugger\n    is rebooted.\n* -p PRESERVE [PRESERVE ...] to specify registers that should not be updated when writing config data to the kit.  These registers\n    will keep their current values even if new values are given in the provided config XML files.\n* -r REGISTER [REGISTER ...] to specify register values to replace.  Only used with ``replace`` action.\n* -f to access factory board config section.  For ``read`` it means read factory board config while for ``write`` it means\n    write both factory and user board config.  There is no factory section for device config.\n* -v to enable verbose output.\n* -vv to enable debug output.\n* -V to print pydebuggerconfig version number and exit.\n* -R to print pydebuggerconfig release details and exit.\n\n### Library\npydebuggerconfig can be used as a library using its \"backend API\".  For example:\n```\n# Instantiate backend (if more than one kit is connected a serial number must be provided as parameter to the Backend constructor)\nfrom pydebuggerconfig.backend import Backend\npb = Backend()\n\n# Write board configuration data to a kit, preserving KITNAME and setting custom USB serial number\nboard_config_string = pb.write_board_config(\"board-configs/ATmega4809-CNANO.xml\", serial_number=\"MYSERIALNUMBER012345\", preserve=['KITNAME'])\nprint(\"Written board config to kit:\")\nprint(board_config_string)\n\n# Write device configuration data to a kit\ndevice_config_string = pb.write_device_config(\"device-configs/ATmega4809-device-blob.xml)\nprint(\"Written device config to kit:\")\nprint(device_config_string)\n\n# Update the name and serial number of a kit\nregisters = {'KITNAME': 'My new kitname', 'SERNUM': 'MYNEWSERIAL012345678'}\npb.replace(registers)\n\n# Read out and print board configuration data from a kit\nboard_config_string = pb.read_board_config_as_string(\"board-configs/ATmega4809-CNANO.xml\")\nprint(\"Board config from kit:\")\nprint(board_config_string)\n\n# Read out and print device configuration data from a kit\ndevice_config_string = pb.read_device_config_as_string()\nprint(\"Device config from kit:\")\nprint(device_config_string)\n\n# Print the pydebuggerconfig package version\nfrom pydebuggerconfig import __version__ as pydebuggerconfig_version\nprint(\"pydebuggerconfig version {}\".format(pydebuggerconfig_version))\n\n# In addition, the CLI-backend API is versioned for convenience\nprint(\"pydebuggerconfig backend API version: {}\".format(pb.get_api_version()))\n```\n\n## Dependencies\npydebuggerconfig depends on pyedbglib for its transport protocol.  pyedbglib requires a USB transport library like libusb.\nSee pyedbglib package for more information.\n\n## Supported tools\npydebuggerconfig only supports PKOB nano (nEDBG) debuggers.  These are typically found on Curiosity Nano kits.\n\n## Linux systems\nThis package uses pyedbglib and other libraries for USB transport and some udev rules are required.  For details see the pyedbglib package: https://pypi.org/project/pyedbglib\n\n# Changelog\n\n## [3.11] - March 2024\n\n### Added\n- DSG-3022 Update documentation to describe how to use bundled configuration files\n- DSG-5755 Add CLI catch-all exception handler to pydebuggerconfig\n- DSG-5884 SAM-IoT Wx board configuration\n- DSG-6060 Extend CONFIG to cater for immutable boot and boot row memtype\n- DSG-6139 EBV-IoT Mirochip ATECC608 Secure Shield board configuration\n- DSG-6144 List all available configurations through the CLI\n- DSG-6510 Prepare pydebuggerconfig for new build commands\n\n### Changed\n- DSG-6990 Refactor pydebuggerconfig id_extension_tool backend to make it usable as a library\n\n### Fixed\n- DSG-2253 Pydebuggerconfig crashes when a single digit hex value is used for an ENUM register\n- DSG-4169 PIC24FJ128GA705 device config is broken\n- DSG-4725 Pydebuggerupgrade requirements ambiguity for python 2.7\n- DSG-6852 Config words fail to write\n- DSG-6991 Pydebuggerconfig id_extension_tool does not check 16-bit overflow\n\n\n## [3.9] - December 2021\n\n### Added\n- DSG-2503 Added support for PIC18F16Q40 and PIC18F16Q41 Curiosity Nano boards\n- DSG-5421 Added support for AVR DU and additional AVR DD devices\n- DSG-3804 Added Python 3.9 support\n\n### Changed\n- DSG-5418 Added Python 3.10 metadata tag\n- DSG-5543 Removed Python 3.6 metadata tag\n- DSG-5417 Removed distutils usage\n\n### Fixed\n- DSG-2200 Handle missing exact specification version\n- DSG-2230 Naming consistency audit\n- DSG-2310 Clarification: -fa switch is \"ALSO factory section\" (not JUST factory section)\n- DSG-2423 Python package zip artifact is missing pypi.md file\n- DSG-2459 Python package broken on Py 2.7\n- DSG-2576 Fix short form switches\n- DSG-3061 Fuse protection not enabled on AVR EA Curiostiy Nano\n- DSG-3104 Crash while replacing KEY2\n- DSG-3111 Package version in Python wheel metadata does not match wheel version for wheels from non-master branches\n- DSG-4328 Fixed -s confusion\n\n\n## [3.5] - October 2020\n- First public release to PyPi\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A collection of tools to configure Microchip PKOB nano on-board debuggers",
    "version": "3.11.2.44",
    "project_urls": null,
    "split_keywords": [
        "microchip",
        " nedbg",
        " curiosity nano",
        " pkob nano",
        " debugger"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "019a973537d17f6858694fd1abb6a34ab08af1a4b5b96dcd46d10eda92476b30",
                "md5": "9e62f9c18415322033af1b485c857bcb",
                "sha256": "968c8dbc9ebab34aed37f36627eb21fd5fc2a1b60454345462c8210e7a2e8cd2"
            },
            "downloads": -1,
            "filename": "pydebuggerconfig-3.11.2.44-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9e62f9c18415322033af1b485c857bcb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=2.7",
            "size": 235105,
            "upload_time": "2024-03-22T09:38:12",
            "upload_time_iso_8601": "2024-03-22T09:38:12.118368Z",
            "url": "https://files.pythonhosted.org/packages/01/9a/973537d17f6858694fd1abb6a34ab08af1a4b5b96dcd46d10eda92476b30/pydebuggerconfig-3.11.2.44-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-22 09:38:12",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pydebuggerconfig"
}
        
Elapsed time: 0.22367s