Adam
Adam
See image below. The setup is enough to run quick Autobahn tests, viewing the results directly in the simulator (checkmark or X for pass/fail). Note that tests fail randomly because...
The Jetfire API is not thread-safe, and it is not explicitly declared as such. Either add a note that instances of `JFRWebSocket` should not be accessed by multiple threads, or...
Clang seems quite confused by the chained properties DSL. Today I found that some of my matchers were missing trailing parens, effectively returning but not executing the matcher. The specific...
I confirm that this contribution is made under the terms of the license found in the root directory of this repository's source tree and that I have the authority necessary...
# tl;dr: To make your project work with Unicorn pHAT before this is merged... ### Using Command Line ``` pip3 uninstall unicorn-hat-sim pip3 install git+git://github.com/adamkaplan/unicorn-hat-sim@patch-1#egg=unicorn-hat-sim ``` ### Using Requirements.txt Add...
Most properties are written as `@property (nullable) Type *thing`. This means that the default `atomic` keyword is implied. So, every property has a thread synchronization lock included. That’s a lot...