Unverified Commit 276ee449 authored by Mitch Burnett's avatar Mitch Burnett Committed by GitHub
Browse files

Merge pull request #51 from casper-astro/py38-dev

Py38 dev
parents 68a3df96 18a768ba
Showing with 4 additions and 3 deletions
+4 -3
......@@ -63,7 +63,8 @@ setuptools.setup(
'tftpy',
'progressbar2',
'requests',
'circus'
'circus',
'crcmod'
],
extras_require = {'test': ['pytest', 'pytest-datadir']},
packages=['casperfpga', 'casperfpga.debug', 'casperfpga.progska'],
......
......@@ -12,8 +12,8 @@ LOGGER = logging.getLogger(__name__)
STRUCT_CTYPES = {1: 'B', 2: 'H', 4: 'L', 8: 'Q'}
STRUCT_CTYPES_TO_B = {'B': 1, 'H': 2, 'L': 4, 'Q': 8}
TENGBE_UNIFIED_MMAP_TXT = 'tengbe_mmap.txt'
TENGBE_MMAP_LEGACY_TXT = 'tengbe_mmap_legacy.txt'
TENGBE_UNIFIED_MMAP_TXT = resource_filename('casperfpga', 'tengbe_mmap.txt')
TENGBE_MMAP_LEGACY_TXT = resource_filename('casperfpga', 'tengbe_mmap_legacy.txt')
# Offsets for fields in the memory map, in bytes
OFFSET_CORE_TYPE = 0x0
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment