<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/shared-module/usb_hid, branch 6.2.0-beta.1</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=6.2.0-beta.1</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=6.2.0-beta.1'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2020-08-19T12:18:17+00:00</updated>
<entry>
<title>support to get HID OUT report</title>
<updated>2020-08-19T12:18:17+00:00</updated>
<author>
<name>Yihui Xiong</name>
<email>yihui.xiong@hotmail.com</email>
</author>
<published>2020-08-19T12:18:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=8bab7b664c9627dfbaa32b3bf64893d7487f1cd0'/>
<id>urn:sha1:8bab7b664c9627dfbaa32b3bf64893d7487f1cd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>First try at lowering the power consumption</title>
<updated>2020-03-13T18:12:30+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2020-03-06T01:14:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=6f60afe8c521011d1a2d34a2632295b483a8cee3'/>
<id>urn:sha1:6f60afe8c521011d1a2d34a2632295b483a8cee3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Supervisor: move most of systick to the supervisor</title>
<updated>2019-11-18T17:01:23+00:00</updated>
<author>
<name>Jeff Epler</name>
<email>jepler@gmail.com</email>
</author>
<published>2019-11-18T14:22:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7f744a2369a5036cadfa05575da1704f709c98bb'/>
<id>urn:sha1:7f744a2369a5036cadfa05575da1704f709c98bb</id>
<content type='text'>
This code is shared by most parts, except where not all the #ifdefs
inside the tick function were present in all ports.  This mostly would
have broken gamepad tick support on non-samd ports.

The "ms32" and "ms64" variants of the tick functions are introduced
because there is no 64-bit atomic read.  Disabling interrupts avoids
a low probability bug where milliseconds could be off by ~49.5 days
once every ~49.5 days (2^32 ms).

Avoiding disabling interrupts when only the low 32 bits are needed is a minor
optimization.

Testing performed: on metro m4 express, USB still works and
time.monotonic_ns() still counts up
</content>
</entry>
<entry>
<title>trivial change; try to force check run</title>
<updated>2019-09-04T03:15:50+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2019-09-04T03:15:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d3cb1030c8c8ab1395c17db1ec003e062c6a42a9'/>
<id>urn:sha1:d3cb1030c8c8ab1395c17db1ec003e062c6a42a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>simpler generation of HID device tables</title>
<updated>2019-09-04T01:16:14+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2019-09-04T01:16:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=94ba02754436368e84f307ade144b0b84f895f7b'/>
<id>urn:sha1:94ba02754436368e84f307ade144b0b84f895f7b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>WIP</title>
<updated>2019-09-03T18:44:46+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2019-09-03T18:44:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=42f5edbd331b27c7096f57da2affd7561287c17f'/>
<id>urn:sha1:42f5edbd331b27c7096f57da2affd7561287c17f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>usb_hid: Allow USB work to progress while waiting for tud_hid_ready</title>
<updated>2019-08-10T14:33:45+00:00</updated>
<author>
<name>Jeff Epler</name>
<email>jepler@gmail.com</email>
</author>
<published>2019-08-10T14:33:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=be5205d02081771e7aea51285f94fee83ef4fb77'/>
<id>urn:sha1:be5205d02081771e7aea51285f94fee83ef4fb77</id>
<content type='text'>
Otherwise, examples like the one attached to the related issue fail
because tud_hid_ready never returns true.

Testing performed: Adapted the example to nrf particle xenon (it was
handy), removed dependency on IR, verified that the problem occurred
before this change, and that it was fixed after this change.

Closes: #2048
</content>
</entry>
<entry>
<title>update tinyusb lib to 0.5.x</title>
<updated>2019-07-24T09:46:31+00:00</updated>
<author>
<name>hathach</name>
<email>thach@tinyusb.org</email>
</author>
<published>2019-07-24T09:46:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=c921f6637f55936726a880f225812302a3fdf0d1'/>
<id>urn:sha1:c921f6637f55936726a880f225812302a3fdf0d1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix HID buffer lookup</title>
<updated>2019-03-27T22:23:20+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-03-27T22:23:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=9232ec50f1adcc9d192b6fdda2746c0305c9ced5'/>
<id>urn:sha1:9232ec50f1adcc9d192b6fdda2746c0305c9ced5</id>
<content type='text'>
The previous code assumed HID report ids were consecutive. This is
not true in the CircuitPython descriptor where report ids are fixed
for each report type.

Fixes #1617
</content>
</entry>
<entry>
<title>Build refinement to handle warnings and quiet output</title>
<updated>2018-11-09T08:11:43+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2018-11-09T08:11:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=168e23e466737fd25d6c7a524231781e35d1d49a'/>
<id>urn:sha1:168e23e466737fd25d6c7a524231781e35d1d49a</id>
<content type='text'>
</content>
</entry>
</feed>
