<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zmk.git/app/drivers/sensor, branch master</title>
<subtitle>ZMK Bluetooth keyboard firmware.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/'/>
<entry>
<title>feat: Add nrf VDDH battery driver</title>
<updated>2021-07-25T04:39:13+00:00</updated>
<author>
<name>Joel Spadin</name>
<email>joelspadin@gmail.com</email>
</author>
<published>2021-04-03T06:00:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=a6de43e665ded4831d79159495660ac3a7d48e99'/>
<id>a6de43e665ded4831d79159495660ac3a7d48e99</id>
<content type='text'>
Added a driver which uses the nRF52's ADC channel on the VDDH pin to
read the battery voltage when using high voltage mode.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added a driver which uses the nRF52's ADC channel on the VDDH pin to
read the battery voltage when using high voltage mode.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(core): Move away from deprecated DT API.</title>
<updated>2021-07-17T21:04:25+00:00</updated>
<author>
<name>Pete Johanson</name>
<email>peter@peterjohanson.com</email>
</author>
<published>2021-03-22T14:31:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=2a69f31eb0d3af1290152afb1517142100b3316d'/>
<id>2a69f31eb0d3af1290152afb1517142100b3316d</id>
<content type='text'>
* Move to `DEVICE_DT_INST_DEFINE` everywhere.

See: https://docs.zephyrproject.org/2.5.0/releases/release-notes-2.5.html#deprecated-in-this-release
PR: https://github.com/zmkfirmware/zmk/pull/736
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Move to `DEVICE_DT_INST_DEFINE` everywhere.

See: https://docs.zephyrproject.org/2.5.0/releases/release-notes-2.5.html#deprecated-in-this-release
PR: https://github.com/zmkfirmware/zmk/pull/736
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(logging): remove unnecessary newline</title>
<updated>2021-03-10T23:08:22+00:00</updated>
<author>
<name>Okke Formsma</name>
<email>okke@formsma.nl</email>
</author>
<published>2021-02-27T21:22:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=c01243d1c6e0c84556f248fbc1d83496222209c3'/>
<id>c01243d1c6e0c84556f248fbc1d83496222209c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(power): Add support for capacitors on ADC for BVD</title>
<updated>2021-02-04T12:56:27+00:00</updated>
<author>
<name>jrhrsmit</name>
<email>jasper.770@gmail.com</email>
</author>
<published>2021-02-04T12:56:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=e40ca1eb7c7bfae09c16344c478b10b0ab22b3f1'/>
<id>e40ca1eb7c7bfae09c16344c478b10b0ab22b3f1</id>
<content type='text'>
Add a little delay so any capacitors connected to the ADC for the BVD can charge up when using power_gpios

Co-authored-by: Jasper Smit &lt;jrhrsmit@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a little delay so any capacitors connected to the ADC for the BVD can charge up when using power_gpios

Co-authored-by: Jasper Smit &lt;jrhrsmit@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(app): replace `void` with `const struct device *dev` in ISR CBs</title>
<updated>2020-12-14T17:41:25+00:00</updated>
<author>
<name>innovaker</name>
<email>66737976+innovaker@users.noreply.github.com</email>
</author>
<published>2020-11-19T22:58:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=f7d9d522218e12cffb44fc0102b2bb0cf8174d42'/>
<id>f7d9d522218e12cffb44fc0102b2bb0cf8174d42</id>
<content type='text'>
See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(app): replace `struct device *` with `const struct device *`</title>
<updated>2020-12-14T17:41:25+00:00</updated>
<author>
<name>innovaker</name>
<email>66737976+innovaker@users.noreply.github.com</email>
</author>
<published>2020-12-10T19:31:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=00ca0d2f1cb0a939e5207454d89c6d37ef9f45a6'/>
<id>00ca0d2f1cb0a939e5207454d89c6d37ef9f45a6</id>
<content type='text'>
Replaced with RegExp: /(?&lt;!const )(struct device \*)/g

See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replaced with RegExp: /(?&lt;!const )(struct device \*)/g

See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(app): replace `driver_data` with `data`</title>
<updated>2020-12-14T17:41:25+00:00</updated>
<author>
<name>innovaker</name>
<email>66737976+innovaker@users.noreply.github.com</email>
</author>
<published>2020-11-28T20:03:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=1411092a7bb6e21e6e3a272737ad36d613e3b367'/>
<id>1411092a7bb6e21e6e3a272737ad36d613e3b367</id>
<content type='text'>
See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(app): replace `config_info` with `config`</title>
<updated>2020-12-14T17:41:25+00:00</updated>
<author>
<name>innovaker</name>
<email>66737976+innovaker@users.noreply.github.com</email>
</author>
<published>2020-11-28T20:03:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=3d7376d2e50adf9d807431161487e0eb19f52390'/>
<id>3d7376d2e50adf9d807431161487e0eb19f52390</id>
<content type='text'>
See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html
PR: #467</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(app): replace Zephyr integer types with C99 integer types</title>
<updated>2020-12-14T17:41:25+00:00</updated>
<author>
<name>innovaker</name>
<email>66737976+innovaker@users.noreply.github.com</email>
</author>
<published>2020-12-02T16:41:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=bac1f17cf6ce225876dc7b6b2a809bcd98010391'/>
<id>bac1f17cf6ce225876dc7b6b2a809bcd98010391</id>
<content type='text'>
u8_t → uint8_t
u16_t → uint16_t
u32_t → uint32_t
u64_t → uint64_t
s8_t → int8_t
s16_t → int16_t
s32_t → int32_t
s64_t → int64_t

Prerequisite for #223
See: https://github.com/zephyrproject-rtos/zephyr/releases/tag/zephyr-v2.4.0
PR: #467</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
u8_t → uint8_t
u16_t → uint16_t
u32_t → uint32_t
u64_t → uint64_t
s8_t → int8_t
s16_t → int16_t
s32_t → int32_t
s64_t → int64_t

Prerequisite for #223
See: https://github.com/zephyrproject-rtos/zephyr/releases/tag/zephyr-v2.4.0
PR: #467</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: Align drivers with Zephyr file system conventions</title>
<updated>2020-12-04T02:06:01+00:00</updated>
<author>
<name>innovaker</name>
<email>66737976+innovaker@users.noreply.github.com</email>
</author>
<published>2020-11-19T17:20:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.nvandoorn.com/zmk.git/commit/?id=8d9ae1fdf379020d4743b4f85f465e88b148ac29'/>
<id>8d9ae1fdf379020d4743b4f85f465e88b148ac29</id>
<content type='text'>
PR: #400</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR: #400</pre>
</div>
</content>
</entry>
</feed>
