I hereby claim:
- I am cr1901 on github.
- I am cr1901 (https://keybase.io/cr1901) on keybase.
- I have a public key whose fingerprint is 5EA0 2E81 36AE 81BE 8EAA 90F5 F2F8 0EFE D694 6BC2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <stddef.h> | |
| #define CHAR_ARRAY_2_SHORT_LE(_x) ((_x)[0] << 0) | ((_x)[1] << 8) | |
| static char string_buf[256]; | |
| static char record_buf[1024]; |
| [py35] F:\Consult\artiq\artiq>conda install h5py 1> ../conda_h5py_errs.txt 2>&1 | |
| Fetching package metadata: ........ | |
| Solving package specifications: ...... | |
| Error: Unsatisfiable package specifications. | |
| Generating hint: | |
| [ ]| | 0% | |
| [ COMPLETE ]|##################################################| 100% | |
| set ARTIQ_ROOT=F:\Consult\artiq\artiq | |
| start /b python %ARTIQ_ROOT%\artiq\frontend\artiq_master.py --device-db %ARTIQ_ROOT%\examples\master\device_db.pyon --dataset-db %ARTIQ_ROOT%\examples\master\dataset_db.pyon --repository %ARTIQ_ROOT%\examples\master\repository 2> master_err.log & | |
| python %ARTIQ_ROOT%\artiq\frontend\artiq_gui.py |
| [HANDLER_OUTPUT] | |
| -- Found Subversion: C:/msys64/usr/bin/svn.exe (found version "1.8.13") | |
| -- Dashboard script configuration: | |
| CTEST_SITE=[WIN732-VS2015.XXXX] | |
| CTEST_BUILD_NAME=[Windows-WIN7-vs2015-STATIC] | |
| CTEST_SOURCE_DIRECTORY=[C:/Users/William/Downloads/HDF518CMake\hdf5-1.8.15-patch1] | |
| CTEST_BINARY_DIRECTORY=[C:/Users/William/Downloads/HDF518CMake\build] | |
| CTEST_CMAKE_GENERATOR=[Visual Studio 14 2015] | |
| CTEST_BUILD_CONFIGURATION=[Release] |
| import asyncio | |
| import atexit | |
| from quamash import QEventLoop, QtGui, QtCore | |
| from pyqtgraph import dockarea # Will import PyQt5.QtGui.QApplication | |
| class MainWindow(QtGui.QMainWindow): | |
| def __init__(self, app, server): | |
| QtGui.QMainWindow.__init__(self) |
| ===== 2015.11.17 12:11:55 ===== | |
| Traceback (most recent call last): | |
| File "F:\Consult\artiq\artiq\artiq\frontend\artiq_gui.py", line 147, in <modul | |
| e> | |
| main() | |
| File "F:\Consult\artiq\artiq\artiq\frontend\artiq_gui.py", line 138, in main | |
| d_log0 = logmgr.first_log_dock() | |
| File "f:\consult\artiq\artiq\artiq\gui\log.py", line 310, in first_log_dock | |
| dock = self.create_new_dock(False) | |
| File "f:\consult\artiq\artiq\artiq\gui\log.py", line 277, in create_new_dock |
| import asyncio | |
| import atexit | |
| import os | |
| from quamash import QEventLoop, QtGui, QtCore | |
| from pyqtgraph import dockarea | |
| # import scanwidget | |
| class MainWindow(QtGui.QMainWindow): | |
| def __init__(self, app, server): |
| import asyncio | |
| import atexit | |
| import os | |
| import scanwidget | |
| # First two are portable between PyQt4 and 5. Remaining are not. | |
| from quamash import QApplication, QEventLoop, QtGui, QtCore, QtWidgets | |
| from migen.fhdl.std import * | |
| from migen.genlib.fifo import AsyncFIFO | |
| from migen.fhdl.bitcontainer import flen | |
| from migen.fhdl import verilog | |
| class FreqCounter(Module): | |
| # measured_sig: Signal to measure frequency | |
| # ref_clk: counts up to a gate_time number of cycles. It should be at least | |
| # twice as fast as the maximum frequency of the measured signal to avoid |