<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rockbox/manual, branch working</title>
<subtitle>My Rockbox tree</subtitle>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/'/>
<entry>
<title>Merge branch 'master' into working</title>
<updated>2016-11-06T23:26:48+00:00</updated>
<author>
<name>Franklin Wei</name>
<email>frankhwei536@gmail.com</email>
</author>
<published>2016-11-06T23:26:48+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=284b250c3b7feeef0bf5b45879922b6d4d51803d'/>
<id>284b250c3b7feeef0bf5b45879922b6d4d51803d</id>
<content type='text'>
Change-Id: Iad54233a3575c0117f88ce7a1e89bfa639760f63
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Iad54233a3575c0117f88ce7a1e89bfa639760f63
</pre>
</div>
</content>
</entry>
<entry>
<title>SVG image of the Creative Zen Vision, plus other formats for the manual.</title>
<updated>2016-11-06T17:27:18+00:00</updated>
<author>
<name>Szymon Dziok</name>
<email>b0hoon@o2.pl</email>
</author>
<published>2016-11-06T17:27:18+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=a2d46868e2695c85b863848792ead8c1d680f185'/>
<id>a2d46868e2695c85b863848792ead8c1d680f185</id>
<content type='text'>
Change-Id: Ib6fa4a71014f718dd05cb754b80156c2e74ca1ea
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ib6fa4a71014f718dd05cb754b80156c2e74ca1ea
</pre>
</div>
</content>
</entry>
<entry>
<title>Fuze+: fix manual (alarm keymap)</title>
<updated>2016-08-22T21:31:03+00:00</updated>
<author>
<name>Sebastian Leonhardt</name>
<email>sebastian.leonhardt@web.de</email>
</author>
<published>2016-08-22T21:31:03+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=762dde00fb5037e6256be72bced4ccc81385c74d'/>
<id>762dde00fb5037e6256be72bced4ccc81385c74d</id>
<content type='text'>
Change-Id: I5d685b7e102bbde8af0b33143feea07a8513f788
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I5d685b7e102bbde8af0b33143feea07a8513f788
</pre>
</div>
</content>
</entry>
<entry>
<title>manual: fix/remove broken links</title>
<updated>2016-08-15T22:19:42+00:00</updated>
<author>
<name>Sebastian Leonhardt</name>
<email>sebastian.leonhardt@web.de</email>
</author>
<published>2016-08-15T21:56:53+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=fe730d3a2848c84a34ae81d01a2918fe8ebe703f'/>
<id>fe730d3a2848c84a34ae81d01a2918fe8ebe703f</id>
<content type='text'>
Change-Id: Ic6a53490b91c891e53feba3804957b0dffcfc074
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ic6a53490b91c891e53feba3804957b0dffcfc074
</pre>
</div>
</content>
</entry>
<entry>
<title>[WIP] DuckyScript plugin</title>
<updated>2016-07-12T16:01:01+00:00</updated>
<author>
<name>Franklin Wei</name>
<email>frankhwei536@gmail.com</email>
</author>
<published>2015-09-24T01:46:54+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=1b80b7ee4a5998784821e278f374c1363e95c7c1'/>
<id>1b80b7ee4a5998784821e278f374c1363e95c7c1</id>
<content type='text'>
Allows a DAP to behave like a USB Rubber Ducky by executing DuckyScript files,
which is a BASIC-like language with facilities for sending keystrokes.

A "crash course" on the language can be found at http://71.71.39.6/ducky.txt

This plugin also implements several extensions to vanilla DuckyScript, some of
which are listed below (see source for complete documentation).

 - variables (multicharacter names via hash map)
 - control flow (JUMP/GOTO, IF) with labels
 - expression parsing when a number is needed
 - non-decimal bases
 - bytecode compilation (on computer only)

The compiler and related tools can be found here:
https://github.com/theunamedguy/ducky

NOTE: Changes some entries in the HID usage tables, but doesn't break anything.

TODO:

 - Finish up manual entry
 - Further documentation?
 - More optimization?
 - Arrays (how?)
 - TEST, TEST, TEST!
   - Some features have only been marginally tested and MIGHT NOT WORK CORRECTLY
 - FASTER TYPING!!!
   - Currently averages ~96 keys/sec
   - Theoretical maximum: 500 keys/sec
   - Of interest: G#1223 (http://gerrit.rockbox.org/r/1223/)

Change-Id: I149ecd08ba124f8b8637a002ee2652dd54a44e58
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows a DAP to behave like a USB Rubber Ducky by executing DuckyScript files,
which is a BASIC-like language with facilities for sending keystrokes.

A "crash course" on the language can be found at http://71.71.39.6/ducky.txt

This plugin also implements several extensions to vanilla DuckyScript, some of
which are listed below (see source for complete documentation).

 - variables (multicharacter names via hash map)
 - control flow (JUMP/GOTO, IF) with labels
 - expression parsing when a number is needed
 - non-decimal bases
 - bytecode compilation (on computer only)

The compiler and related tools can be found here:
https://github.com/theunamedguy/ducky

NOTE: Changes some entries in the HID usage tables, but doesn't break anything.

TODO:

 - Finish up manual entry
 - Further documentation?
 - More optimization?
 - Arrays (how?)
 - TEST, TEST, TEST!
   - Some features have only been marginally tested and MIGHT NOT WORK CORRECTLY
 - FASTER TYPING!!!
   - Currently averages ~96 keys/sec
   - Theoretical maximum: 500 keys/sec
   - Of interest: G#1223 (http://gerrit.rockbox.org/r/1223/)

Change-Id: I149ecd08ba124f8b8637a002ee2652dd54a44e58
</pre>
</div>
</content>
</entry>
<entry>
<title>rename otp to passmgr</title>
<updated>2016-07-09T23:36:30+00:00</updated>
<author>
<name>Franklin Wei</name>
<email>frankhwei536@gmail.com</email>
</author>
<published>2016-07-09T23:36:30+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=3df07c7953c950ed268ddb61a728f5d7d39ebc58'/>
<id>3df07c7953c950ed268ddb61a728f5d7d39ebc58</id>
<content type='text'>
Change-Id: I9f172c71eb2f120e7071d6fa812e5b19b7d73124
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I9f172c71eb2f120e7071d6fa812e5b19b7d73124
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'synopsys' into working</title>
<updated>2016-06-14T22:04:54+00:00</updated>
<author>
<name>Franklin Wei</name>
<email>frankhwei536@gmail.com</email>
</author>
<published>2016-06-14T22:04:54+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=9674a1fbf289d81056c327ae367f7fd8f85dae64'/>
<id>9674a1fbf289d81056c327ae367f7fd8f85dae64</id>
<content type='text'>
Change-Id: I79f5a5dcfbe3ef7531558abac02fca129e9fb161
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I79f5a5dcfbe3ef7531558abac02fca129e9fb161
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove chapter magic in table of contents for scrreprt tex4ht.</title>
<updated>2016-06-14T16:28:28+00:00</updated>
<author>
<name>Frank Gevaerts</name>
<email>frank@gevaerts.be</email>
</author>
<published>2016-06-14T16:26:59+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=c7a561e9f16b9c14631b448510297ffa912c298c'/>
<id>c7a561e9f16b9c14631b448510297ffa912c298c</id>
<content type='text'>
This fixes html builds. Don't ask.

Change-Id: Icb034a5c3ca74af887e31063007f41f9ef8be404
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes html builds. Don't ask.

Change-Id: Icb034a5c3ca74af887e31063007f41f9ef8be404
</pre>
</div>
</content>
</entry>
<entry>
<title>Update old \tt and \sc macros</title>
<updated>2016-06-14T16:28:28+00:00</updated>
<author>
<name>Frank Gevaerts</name>
<email>frank@gevaerts.be</email>
</author>
<published>2016-06-14T15:04:28+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=7b95b9d76d32354f8a45b3b54ce7b47f240d7fc2'/>
<id>7b95b9d76d32354f8a45b3b54ce7b47f240d7fc2</id>
<content type='text'>
Change-Id: I016d946e48590039bcedd7dd5ec41322b0ef17ea
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I016d946e48590039bcedd7dd5ec41322b0ef17ea
</pre>
</div>
</content>
</entry>
<entry>
<title>added xrick game</title>
<updated>2016-06-14T02:49:35+00:00</updated>
<author>
<name>Sebastian Leonhardt</name>
<email>sebastian.leonhardt@web.de</email>
</author>
<published>2016-01-08T00:05:36+00:00</published>
<link rel='alternate' type='text/html' href='https://www.franklinwei.com/cgit/rockbox/commit/?id=b33d4e9ae51f7b5fcd4add3f9e7a6fb966f67d76'/>
<id>b33d4e9ae51f7b5fcd4add3f9e7a6fb966f67d76</id>
<content type='text'>
original xrick code by 'BigOrno' at:
http://www.bigorno.net/xrick/

Rockbox port, plus bugfixes at:
https://github.com/pierluigi-vicinanza/xrick

Change-Id: Id83928bc2539901b0221692f65cbca41389c58e7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
original xrick code by 'BigOrno' at:
http://www.bigorno.net/xrick/

Rockbox port, plus bugfixes at:
https://github.com/pierluigi-vicinanza/xrick

Change-Id: Id83928bc2539901b0221692f65cbca41389c58e7
</pre>
</div>
</content>
</entry>
</feed>
