Difference between revisions of "User:Mikeqin"

From Bitcoin Wiki
Jump to: navigation, search
(Lost character)
(Dev Log)
Line 3: Line 3:
  
 
= Dev Log =
 
= Dev Log =
* use Milkymist One JTAG/Serial for common user
+
* Use Milkymist One JTAG/Serial for common user
 
   Edit udev rules( for example:/etc/udev/rules.d/99-mike.rules
 
   Edit udev rules( for example:/etc/udev/rules.d/99-mike.rules
 
   Add SUBSYSTEMS=="usb", ATTRS{idVendor}=="20b7", ATTRS{idProduct}=="0713" GROUP="YOUR_USER_GROUP" to the end of the file.
 
   Add SUBSYSTEMS=="usb", ATTRS{idVendor}=="20b7", ATTRS{idProduct}=="0713" GROUP="YOUR_USER_GROUP" to the end of the file.
 
   YOUR_USER_GROUP(mikeqin)
 
   YOUR_USER_GROUP(mikeqin)
 +
* Convert char to hex
 +
  in shell:echo -n convertstr | xxd -r -p
 +
  in c: use pipe

Revision as of 10:55, 16 April 2014

Contact

 Fengling.Qin@gmail.com

Dev Log

  • Use Milkymist One JTAG/Serial for common user
 Edit udev rules( for example:/etc/udev/rules.d/99-mike.rules
 Add SUBSYSTEMS=="usb", ATTRS{idVendor}=="20b7", ATTRS{idProduct}=="0713" GROUP="YOUR_USER_GROUP" to the end of the file.
 YOUR_USER_GROUP(mikeqin)
  • Convert char to hex
 in shell:echo -n convertstr | xxd -r -p
 in c: use pipe