Editing Teensy++ 2.0
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
<div style="float:right">[[File:Teensy++2.0 persp.png| | <div style="float:right">[[File:Teensy++2.0 persp.png|200px|thumb|left|Teensy++ 2.0 perspective view]]<br />[[File:Teensy++2.0 top.png|200px|thumb|left|Teensy++ 2.0 top view]]<br />[[File:Teensy++2.0 bottom.png|200px|thumb|left|Teensy++ 2.0 bottom view]]</div> | ||
= Description = | |||
The Teensy is a complete USB-based microcontroller development system, in a very small footprint, capable of implementing [https://www.pjrc.com/teensy/projects.html many types of projects]. All programming is done via the USB port. No special programmer is needed | The Teensy is a complete USB-based microcontroller development system, in a very small footprint, capable of implementing [https://www.pjrc.com/teensy/projects.html many types of projects]. All programming is done via the USB port. No special programmer is needed | ||
To use it as a PS3 flasher is needed to program it with either NORway.hex or NANDway.hex, explained below | To use it as a PS3 flasher is needed to program it with either NORway.hex or NANDway.hex, explained below | ||
= Teensy 2.0 ++ Software = | |||
== Windows Drivers and Linux UDEV Rules == | |||
The Teensy 2.0++ needs windows drivers and linux udev rules to be recognized fully as it was meant to. | |||
* [http://www.pjrc.com/teensy/usb_serial.html Teensy Drivers from PJRC.com] | |||
** [http://ps3devwiki.com/files/flash/Tools/NORway/drivers/ filemirror] | |||
== | == Python and Pyserial (only windows) == | ||
*Python 2.7.2 http://www.python.org/ftp/python/2.7.2/python-2.7.2.msi | |||
*Pyserial 2.5 http://pypi.python.org/packages/any/p/pyserial/pyserial-2.5.win32.exe | |||
== | == NORway == | ||
NOR PC Python client | |||
Used to analyze dumps and also contains hex files to program the Teensy itself. | |||
* [https://github.com/hjudges/NORway NORway git] | |||
** [https://github.com/hjudges/NORway/archive/master.zip] | |||
* | |||
* | |||
* | |||
=== | === Mac OS-X patch === | ||
if you are on Mac OS-X and having problems with timeouts: | |||
<MikeM64> hahaha, it's a dirty fix, but it seems to work XD | |||
<MikeM64> lemme compile diffs, I got perfect writes happening on my mac now | |||
<MikeM64> 10 writes and 2 timeouts; not bad. better than 20 timeouts / write | |||
<MikeM64> http://pastie.org/8570558 if anyone needs it | |||
=== NORway usage === | |||
<pre>Usage: %s serialport [command] [filename] [address] | |||
serialport Name of serial port to open (eg. COM1, COM2, /dev/ttyACM0, etc) | |||
command dump Reads entire NOR to [filename] | |||
erase Erases one sector (128KB) at [address] | |||
write Flashes (read-erase-modify-write-verify) [filename] | |||
at [address] to NOR | |||
writeimg Same as write, but prepend a 16-byte length header | |||
[address] is required | |||
program Flashes (erase-write-verify) [filename] | |||
at [address] to NOR | |||
release Releases NOR interface, so the PS3 can boot | |||
filename Filename for [dump|write|writeimg|program] | |||
address Address for [erase|write|writeimg|program] | |||
Default is 0x0, address must be aligned (multiple of 0x20000) | |||
</pre> | |||
== NANDway == | |||
NAND PC Python client | |||
Project home: | |||
* https://github.com/hjudges/NORway (previously https://github.com/Effleurage/NORway-and-NANDway but now merged in main git) | |||
* | |||
precompiled by judges : http://www.mediafire.com/?i5y1mhhh5lz62xu | |||
=== NANDway usage === | |||
<pre>NANDWay.py Serial-Port 0/1 Command | |||
Serial-Port Name of serial port to open (eg. COM1, COM2, /dev/ttyACM0, etc) | Serial-Port Name of serial port to open (eg. COM1, COM2, /dev/ttyACM0, etc) | ||
0/1 NAND id number: 0-NAND0, 1-NAND1 | 0/1 NAND id number: 0-NAND0, 1-NAND1 | ||
Commands: | Commands: | ||
* dump Filename [Offset] [Length] | * dump Filename [Offset] [Length] | ||
dumps to Filename at [Offset] and [Length] | |||
* vwrite/write Filename [Offset] [Length] | * vwrite/write Filename [Offset] [Length] | ||
Flashes (v=verify) Filename at [Offset] and [Length] | Flashes (v=verify) Filename at [Offset] and [Length] | ||
* vdiffwrite/diffwrite Filename Diff-file | * vdiffwrite/diffwrite Filename Diff-file | ||
Flashes (v=verify) Filename using a Diff-file | Flashes (v=verify) Filename using a Diff-file | ||
* | * release | ||
Releases TRISTATE, so that the PS3 can boot | |||
* bootloader | * bootloader | ||
Enters Teensy's bootloader mode (for Teensy reprogramming) | Enters Teensy's bootloader mode (for Teensy reprogramming) | ||
Notes: 1) All offsets and lengths are in hex | |||
2) The Diff-file is a file which lists all the changed | |||
offsets of a dump file. This should increase flashing | |||
time dramatically. | |||
Examples: | |||
NANDWay.py COM1 | |||
NANDWay.py COM1 0 dump d:\myflash.bin | |||
NANDWay.py COM1 1 dump d:\myflash.bin 3D a0 | |||
NANDWay.py COM1 0 write d:\myflash.bin | |||
NANDWay.py COM3 1 write d:\myflash.bin | |||
NANDWay.py COM3 1 vwrite d:\myflash.bin 8D A0000 | |||
NANDWay.py COM4 0 diffwrite d:\myflash.bin d:\myflash_diff | |||
NANDWay.py COM3 1 vdiffwrite d:\myflash.bin d:\myflash_diff | |||
NANDWay.py COM1 0 release | |||
</pre> | |||
</ | |||
Notes: | Notes: | ||
Line 139: | Line 96: | ||
* Vcc: Teensy 3.3V regulator cannot power the NANDs on the PS3. The drain of the motherboard summed by the other peripherals draw too much current (~1.8A). The NANDs can be powered from external 3.3V power supply like ATX power supply (the orange 3.3V line of the ATX main connector). | * Vcc: Teensy 3.3V regulator cannot power the NANDs on the PS3. The drain of the motherboard summed by the other peripherals draw too much current (~1.8A). The NANDs can be powered from external 3.3V power supply like ATX power supply (the orange 3.3V line of the ATX main connector). | ||
== WAY-launchers == | |||
Simple GUI to run NORway, NANDway and SPIway. | Simple GUI to run NORway, NANDway and SPIway. | ||
Line 146: | Line 102: | ||
* https://github.com/littlebalup/WAY-launchers | * https://github.com/littlebalup/WAY-launchers | ||
= Installation Requirements = | |||
== | |||
You are going to need a lot parts to accomplish such a task. This takes a lot of patience, and steady hands.<br> | |||
This is a difficult installation! If a part is not needed below it will be specified per model so check there as well.<br> | |||
== | == Parts == | ||
The following items are required to perform the installation of the Teensy++ to most PS3 consoles. | |||
*PS3 dissassembling tools | |||
**1x Regular phillips head screwdriver | |||
**1x Torx 10 (T-10)... or... Torx 8 (T-8) screwdriver | |||
*Case modification tools | |||
* Case modification tools | |||
**1x Cutting knife (to make straight cuts in the plastic) | **1x Cutting knife (to make straight cuts in the plastic) | ||
**1x Drill and small drill bits set | **1x Drill and small drill bits set | ||
**1x Needle file set (also known as diamond files for jewellry or | **1x Needle file set (also known as diamond files for jewellry or hoobylists) with shapes as rounded, squared, triangled, etc... (to make holes in the plastic case or metals with different shapes) | ||
**1x Dremel tool or similar (to make long straight cuts, not needed on some models) | **1x Dremel tool or similar (to make long straight cuts, not needed on some models) | ||
**1x Roll of double sided foam tape, or double side thermal resistant tape | **1x Roll of double sided foam tape, or double side thermal resistant tape up to 300ºC (known as polimyde or kapton tape) | ||
* Soldering work tools | *Soldering work tools | ||
**1x Soldering iron (15-30 Watt, or around | **1x Soldering iron (15-30 Watt, or around 230ºC) with a 1 milimeter tip | ||
**1x Tin solder ( | **1x Tin solder (a low melting point 63/37 alloy, with 1.2% flux core) | ||
**1x 30AWG or 26 AWG | **1x 30AWG or 26 AWG single core and thermal resistant wire, known as wrapping wire or kynar wire. (Few have reported 30AWG may be too small and has interference but does work if done well.) | ||
**1x Cutting knife (to peel wire tips by cutting around them), or a wire stripper tool | **1x Cutting knife (to peel wire tips by cutting around them), or a wire stripper tool | ||
**1x Multimeter (to identify | **1x Multimeter (to identify shorcuts, to identify bad cold solder joints, to find where copper traces in the motherboard are connected, etc...) | ||
**1x | **1x Desolder wick or goatwick 3,5 milimeters wide (to fix the mistakes by melting the tin and wicking it, to remove the factory lead-free solder, to clean solders joints where a bad tin alloy happened because reidues or degradation of the tin, to remove bridges between pins or pads, etc...) | ||
**1x Single side thermal resistant tape | **1x Single side thermal resistant tape up to 300ºC, known as polimyde or kapton tape (to stick wires in place, and to isolate wires or PCB boards from interferences by covering them) | ||
**1x Bottle of flux, lead-free, no-clean | **1x Bottle of flux, lead-free, no-clean | ||
**1x Bottle of 99% | **1x Bottle of 99% isoprobyl alcohol (to clean residues from rosin core of tin, or flux) | ||
**1x Box of cotton | **1x Box of cotton ear sticks (to spread flux, or clean with alcohol where needed.) | ||
*Other helpers | *Other helpers | ||
**1x Good lighting (either very well lighted room or a lamp. You need to be able to check your work.) | **1x Good lighting (either very well lighted room or a lamp. You need to be able to check your work.) | ||
**1x Magnifying glass, or jewellry | **1x Magnifying glass, or jewellry magnifyer, prefered 50x zoom (to check your soldering joints for bad cold solders.) | ||
**1x Small tweezers with a wide tip (to grab wires very close to the tip while soldering them and not burning your fingers in the process, only needed when the solder joint requires extreme | **1x Small tweezers with a wide tip (to grab wires very close to the tip while soldering them and not burning your fingers in the process, only needed when the solder joint requires extreme precission) | ||
**1x Pair of steady hands (not joking. tremor fingers will not cut it. You are soldering 40+ points and all must be done very well.) | **1x Pair of steady hands (not joking. tremor fingers will not cut it. You are soldering 40+ points and all must be done very well.) | ||
**20x | **20x Of patience, if you are having lot of problems is a good idea to stop and continue another day | ||
As you can see it requires a lot of materials to perform this kind of job. If you do not already have the parts for this kind of project, it will probably be cheaper to pay someone else to do it and ship it to and from them. Also if you are not confident in your soldering technique, it is a very realistic possibility that you will | As you can see it requires a lot of materials to perform this kind of job. If you do not already have the parts for this kind of project, it will probably be cheaper to pay someone else to do it and ship it to and from them. Also if you are not confident in your soldering technique, it is a very realistic possibility that you will ruin your Playstation 3 Console during this process as there are a LOT of soldering joints that need to be perfectly made. | ||
== | == Teensy 2.0 ++ Powering options == | ||
Teensy can work in a wide range of voltages up to 5v, but the same voltages that feeds the teensy are used in the data lines (traveling along the wires connected to PS3 flash) | |||
All PS3 flash models included NAND and NOR works at a range of around 3.3 volts | |||
For this reason is mandatory to cut the 5v trace at the bottom of the teensy board and short the 3.3v pads to feed the teensy with 3.3v, this way teensy and the PS3 flash chips will work at the same 3.3 voltage levels | |||
[[File:Teensy adapter Board for NANDway - prepare the Teensy.jpg|300px|Teensy adapter Board for NANDway - prepare the Teensy]] | |||
First of all, we cut the following bridge on the bottom side of the Teensy so that the Teensy no longer works with 5V<br /> | |||
[[File:Teensy adapter Board for NANDway - cut 5V bridge.jpg|300px|Teensy adapter Board for NANDway - cut 5V bridge]] | |||
now, we solder a bridge between the middle common solder pad and the 3,3V pad<br /> | |||
: | [[File:Teensy adapter Board for NANDway - solder 3V bridge.jpg|300px|Teensy adapter Board for NANDway - solder 3V bridge]] | ||
=== | === Teensy powered by USB with the onboard voltage regulator === | ||
After cutting the 5v bridge and soldering the 3.3v bridge, we solder the voltage regulator on the Teensy | |||
This is the standard way of powering the teensy with 3.3v, by soldering a 3.3v regulator as explained in https://www.pjrc.com/teensy/3volt.html | |||
DON'T CONNECT THE +5V SOLDER PAD IN A CORNER OF THE TEENSY TO ANYTHING ! | |||
[[File:Teensy adapter Board for NANDway - solder regulator on teensy.jpg|300px|Teensy adapter Board for NANDway - solder regulator on Teensy]] | |||
=== Teensy powered externally by PS3 or adaptor === | |||
Same as before, first is needed to cut the 5v bridge and solder the 3.3v bridge, but here is not used a voltage regulator | |||
To feed the teensy with the 3.3v are several options, as using an external power supply, taking a 3.3v line from the power supply or from some point of the motherboard... info about this methods can be moved here | |||
In all cases, there is a wire connected from the 3.3 voltage power source to the +5V pad in a corner of the teensy. Note using a on/off switch in this wire is suggested otherway teensy will be powered up permanentlly | |||
DON'T INSTALL VOLTAGE REGULATOR! | |||
== Teensy 2.0 ++ Pinout by flash type == | |||
=== | === Teensy NOR pinout === | ||
[[File:Teensy2.0++.jpg]] | |||
=== Teensy NAND Pinout === | |||
[[File:TeensyNAND.png]] | |||
== Teensy Solder Install Notes by Motherboard Model == | == Teensy Solder Install Notes by Motherboard Model == | ||
Line 375: | Line 199: | ||
I used the image for the Progskeet, along with an image of which Progskeet pin(GP1 etc.) corresponds to which NAND chip pin name (WP, ALE, CLE, I/O1 etc.) to create a diagram of which testpoint on the mainboard goes to which leg of the NAND chips made by Samsung. | I used the image for the Progskeet, along with an image of which Progskeet pin(GP1 etc.) corresponds to which NAND chip pin name (WP, ALE, CLE, I/O1 etc.) to create a diagram of which testpoint on the mainboard goes to which leg of the NAND chips made by Samsung. | ||
[http://ptodorov.com/files/diy/cok002-NAND-TEENSY.jpg Diagram for wiring Teensy++ 2.0 to a PS3 COK-002 mainboard] | |||
So now you can use this diagram not only for downgrading/dumping/writing the NANDs with a Teensy++ 2.0 board, but with any other board available on the Internet. | So now you can use this diagram not only for downgrading/dumping/writing the NANDs with a Teensy++ 2.0 board, but with any other board available on the Internet. | ||
Line 482: | Line 302: | ||
<td>[[File:install-3.jpg|250px|thumb|left|JSD-001 Post wire job from motherboard view with wire wrap.]]<br /> | <td>[[File:install-3.jpg|250px|thumb|left|JSD-001 Post wire job from motherboard view with wire wrap.]]<br /> | ||
[[File:install-4.jpg|250px|thumb|left|JSD-001 Teensy placement and wired up. Notice open space.]]</td> | [[File:install-4.jpg|250px|thumb|left|JSD-001 Teensy placement and wired up. Notice open space.]]</td> | ||
<td>[[File:JSD-001 testpoints.png|250px|thumb|left|JSD-001 Motherboard NOR Test Points.]]<br /> | |||
[[File:JSD-001, Teensy2.0++ Connection Diagram.jpg|250px|thumb|left|JSD-001, Teensy2.0++ Connection Diagram]]</td> | |||
</tr> | </tr> | ||
</table> | </table> | ||
Line 489: | Line 311: | ||
*** Need submissions... | *** Need submissions... | ||
== Teensy clip adapter Board for NANDway v1 == | |||
Layout for a PCB without external Voltage-source (this was the first version without capacitors, Voltageregulator and two bridges) | Layout for a PCB without external Voltage-source (this was the first version without capacitors, Voltageregulator and two bridges) | ||
deprecated, use v2 instead | deprecated, use v2 instead | ||
=== Gallery === | |||
<gallery> | <gallery> | ||
File:Teensy adapter Board for NANDway v1 - top.jpg|Teensy adapter Board for NANDway v1 - top | File:Teensy adapter Board for NANDway v1 - top.jpg|Teensy adapter Board for NANDway v1 - top | ||
Line 502: | Line 322: | ||
</gallery> | </gallery> | ||
=== Download === | |||
[http://playstationhax.it/forums/index.php?app=core&module=attach§ion=attach&attach_id=53 Teensy2Clip - Folie.pdf] [https://mega.co.nz/#!Dls10aqQ!yawLBI-hRRksCJmExqwi4B6MQV7Hk8NEfspxAnOu-EQ mirror] | [http://playstationhax.it/forums/index.php?app=core&module=attach§ion=attach&attach_id=53 Teensy2Clip - Folie.pdf] [https://mega.co.nz/#!Dls10aqQ!yawLBI-hRRksCJmExqwi4B6MQV7Hk8NEfspxAnOu-EQ mirror] | ||
== Teensy clip adapter Board for NANDway v2.1 == | |||
[[File:Teensy adapter Board for NANDway - intro.jpg|Teensy adapter Board for NANDway]]<br /> | |||
'''Source article:''' http://playstationhax.it/forums/topic/1149-teensy-adapter-board-for-nandway/ | '''Source article:''' http://playstationhax.it/forums/topic/1149-teensy-adapter-board-for-nandway/ | ||
Hey. in the past, i create a simple adapter board to connect the Teensy to a "360-clip NAND Clip" (the classic kind of NAND Clips). It's easier and faster to solder a board than [[:File:Teensy NANDway - wired Clip.jpg|wire the cables]], no more problems with cable breaks and a good connection. An english speaking user ask me for a solder tutorial, so I thought on this occasion, i can write directly to the community. :) | Hey. in the past, i create a simple adapter board to connect the Teensy to a "360-clip NAND Clip" (the classic kind of NAND Clips). It's easier and faster to solder a board than [[:File:Teensy NANDway - wired Clip.jpg|wire the cables]], no more problems with cable breaks and a good connection. An english speaking user ask me for a solder tutorial, so I thought on this occasion, i can write directly to the community. :) | ||
Line 519: | Line 338: | ||
But now the tutorial with some words (the most things should be self-explanatory). | But now the tutorial with some words (the most things should be self-explanatory). | ||
=== What you need === | |||
[[File:Teensy adapter Board for NANDway - what you need.jpg|300px|Teensy adapter Board for NANDway - what you need]] | [[File:Teensy adapter Board for NANDway - what you need.jpg|300px|Teensy adapter Board for NANDway - what you need]] | ||
Line 525: | Line 344: | ||
* 1x Teensy++ 2.0 | * 1x Teensy++ 2.0 | ||
* 1x 5V to 3,3V Voltage Regulator for the Teensy ([https://www.pjrc.com/store/mcp1825.html MCP1825], [https://www.reichelt.de/ICs-LM-2000-LM-25576/LM-3940-IMP-3-3/3/index.html?&ACTION=3&LA=5000&GROUP=A2153&GROUPID=5466&ARTICLE=109407&START=0&SORT=preis&OFFSET=500 LM3940] or Pin-compatible) | * 1x 5V to 3,3V Voltage Regulator for the Teensy ([https://www.pjrc.com/store/mcp1825.html MCP1825], [https://www.reichelt.de/ICs-LM-2000-LM-25576/LM-3940-IMP-3-3/3/index.html?&ACTION=3&LA=5000&GROUP=A2153&GROUPID=5466&ARTICLE=109407&START=0&SORT=preis&OFFSET=500 LM3940] or Pin-compatible) | ||
* 1x [http:// | * 1x [http://wii-clip.com/360/360-CLIP_12.jpg TSSOP 32 NAND-Clip] (360-Clip) with equipment (Flat-cable, Pin-header (2x11) and the red adapter board (you get always all these things when you buy a new NAND Clip)) | ||
* 2x [https://www.reichelt.de/Stiftleisten/MPE-087-1-020/3/index.html?&ACTION=3&LA=5000&GROUP=C141&GROUPID=3220&ARTICLE=119888&START=0&SORT=preis&OFFSET=500 Pin-header (1x20)] | * 2x [https://www.reichelt.de/Stiftleisten/MPE-087-1-020/3/index.html?&ACTION=3&LA=5000&GROUP=C141&GROUPID=3220&ARTICLE=119888&START=0&SORT=preis&OFFSET=500 Pin-header (1x20)] | ||
* 1x [https://www.reichelt.de/Stiftleisten/MPE-087-2-008/3/index.html?&ACTION=3&LA=5000&GROUP=C141&GROUPID=3220&ARTICLE=119894&START=0&SORT=preis&OFFSET=500 Pin-header (2x4)] | * 1x [https://www.reichelt.de/Stiftleisten/MPE-087-2-008/3/index.html?&ACTION=3&LA=5000&GROUP=C141&GROUPID=3220&ARTICLE=119894&START=0&SORT=preis&OFFSET=500 Pin-header (2x4)] | ||
==== optional but recommendable ==== | |||
* 2x [https://www.reichelt.de/Buchsenleisten/BL-1X20G8-2-54/3/index.html?&ACTION=3&LA=5000&GROUP=C142&GROUPID=3221&ARTICLE=51827&START=0&SORT=preis&OFFSET=500 female connector (1x20)] | * 2x [https://www.reichelt.de/Buchsenleisten/BL-1X20G8-2-54/3/index.html?&ACTION=3&LA=5000&GROUP=C142&GROUPID=3221&ARTICLE=51827&START=0&SORT=preis&OFFSET=500 female connector (1x20)] | ||
* 1x [https://www.reichelt.de/Buchsenleisten/MPE-094-2-008/3/index.html?&ACTION=3&LA=5000&GROUP=C142&GROUPID=3221&ARTICLE=119928&START=0&SORT=preis&OFFSET=500 female connector (2x4)] | * 1x [https://www.reichelt.de/Buchsenleisten/MPE-094-2-008/3/index.html?&ACTION=3&LA=5000&GROUP=C142&GROUPID=3221&ARTICLE=119928&START=0&SORT=preis&OFFSET=500 female connector (2x4)] | ||
Line 537: | Line 356: | ||
* 1x Capacitor 10µF SMD-0805 | * 1x Capacitor 10µF SMD-0805 | ||
==== Optional (if you want power the NAND with external Power) ==== | |||
* 1x 5V to 3,3V Voltage Regulator ([https://www.reichelt.de/ICs-LMC-LS-/LMS-1587-CS-3-3/3/index.html?&ACTION=3&LA=5000&GROUP=A2154&GROUPID=5467&ARTICLE=109422&START=0&SORT=preis&OFFSET=500 LMS1587CS-3.3] or Pin-compatible) | * 1x 5V to 3,3V Voltage Regulator ([https://www.reichelt.de/ICs-LMC-LS-/LMS-1587-CS-3-3/3/index.html?&ACTION=3&LA=5000&GROUP=A2154&GROUPID=5467&ARTICLE=109422&START=0&SORT=preis&OFFSET=500 LMS1587CS-3.3] or Pin-compatible) | ||
* 1x 5V Powersupply (minimum 3A) | * 1x 5V Powersupply (minimum 3A) | ||
See section above to cut the 5v trace on teensy and how to solder the 3.3v regulator at the bottom of teensy board | See section above to cut the 5v trace on teensy and how to solder the 3.3v regulator at the bottom of teensy board | ||
=== Solder the adapter board === | |||
==== Solder pinheaders on adapterboard ==== | |||
Solder the pin-header on the board (be careful, the plastic of the pin-header could melt fast)<br /> | Solder the pin-header on the board (be careful, the plastic of the pin-header could melt fast)<br /> | ||
Line 551: | Line 370: | ||
now, plug the red adapter board (which was at the NAND-clip) on the pin-header, solder the pins and cut them if they are too long.<br /> | now, plug the red adapter board (which was at the NAND-clip) on the pin-header, solder the pins and cut them if they are too long.<br /> | ||
==== Solder adapterboard on pinheader ==== | |||
[[File:Teensy adapter Board for NANDway - solder adapterboard on pinheader.jpg|300px|Teensy adapter Board for NANDway - solder adapterboard on pinheader]] | [[File:Teensy adapter Board for NANDway - solder adapterboard on pinheader.jpg|300px|Teensy adapter Board for NANDway - solder adapterboard on pinheader]] | ||
==== Mount Teensy to board ==== | |||
You can choose, if you want solder the Teensy fixed on the board....<br /> | You can choose, if you want solder the Teensy fixed on the board....<br /> | ||
Line 563: | Line 382: | ||
[[File:Teensy adapter Board for NANDway - solder teensy on female pinheader.jpg|300px|Teensy adapter Board for NANDway - solder teensy on female pinheader]] | [[File:Teensy adapter Board for NANDway - solder teensy on female pinheader.jpg|300px|Teensy adapter Board for NANDway - solder teensy on female pinheader]] | ||
==== Powersource 1x3 pinheader ==== | |||
with the following 1x3 pin-header, you can choose the Powersource for the NAND (external, or USB) (sometimes it can cause problems, when you use the USB as Power Supply)<br /> | with the following 1x3 pin-header, you can choose the Powersource for the NAND (external, or USB) (sometimes it can cause problems, when you use the USB as Power Supply)<br /> | ||
Line 572: | Line 391: | ||
[[File:Teensy adapter Board for NANDway - 1x3 Pinheader Powersource by USB.jpg|300px|Teensy adapter Board for NANDway - 1x3 Pinheader Powersource by USB]] | [[File:Teensy adapter Board for NANDway - 1x3 Pinheader Powersource by USB.jpg|300px|Teensy adapter Board for NANDway - 1x3 Pinheader Powersource by USB]] | ||
==== Optional things: ==== | |||
===== Filtering ===== | |||
for a cleaner voltage, you should solder the capacitors<br /> | for a cleaner voltage, you should solder the capacitors<br /> | ||
Line 580: | Line 399: | ||
[[File:Teensy adapter Board for NANDway - Soldered capacitors for cleaner voltage.jpg|300px|Teensy adapter Board for NANDway - Soldered capacitors for cleaner voltage]] | [[File:Teensy adapter Board for NANDway - Soldered capacitors for cleaner voltage.jpg|300px|Teensy adapter Board for NANDway - Soldered capacitors for cleaner voltage]] | ||
===== External regulator ===== | |||
you can also solder a stronger voltage-regulator (than the one on the Teensy) to connect a stronger 5V power supply (than your USB Port). | you can also solder a stronger voltage-regulator (than the one on the Teensy) to connect a stronger 5V power supply (than your USB Port). | ||
Line 589: | Line 408: | ||
[[File:Teensy adapter Board for NANDway - Soldered Regulator.jpg|300px|Teensy adapter Board for NANDway - Soldered Regulator]] | [[File:Teensy adapter Board for NANDway - Soldered Regulator.jpg|300px|Teensy adapter Board for NANDway - Soldered Regulator]] | ||
===== DC connector ===== | |||
you can connect your 5V Power supply on the marked solder points. I used a DC-coupling for a better handling<br /> | you can connect your 5V Power supply on the marked solder points. I used a DC-coupling for a better handling<br /> | ||
Line 596: | Line 415: | ||
when you want use the external voltage, you must reposition the jumper (like you can see on the picture), but you can always change the powersource with the jumper | when you want use the external voltage, you must reposition the jumper (like you can see on the picture), but you can always change the powersource with the jumper | ||
=== Where you can buy this boards? === | |||
You can find a zip-file to download below. in this file, you find the complete project folder. You can use the files to view and change the Layout or the circuit diagram, but if you only want a board, you can send this zip-file to a PCB service. I order my boards always at [http://elecrow.com/ elecrow.com]. The board has a size of 55mm x 45mm, so you must order the boards on [http://www.elecrow.com/2-layer-10cm-10cm-max-pcb-510pcs-color-free-p-328.html this page]. | You can find a zip-file to download below. in this file, you find the complete project folder. You can use the files to view and change the Layout or the circuit diagram, but if you only want a board, you can send this zip-file to a PCB service. I order my boards always at [http://elecrow.com/ elecrow.com]. The board has a size of 55mm x 45mm, so you must order the boards on [http://www.elecrow.com/2-layer-10cm-10cm-max-pcb-510pcs-color-free-p-328.html this page]. | ||
Line 603: | Line 422: | ||
[[File:Teensy adapter Board for NANDway - Elecrow.jpg|300px|Teensy adapter Board for NANDway - Elecrow]] | [[File:Teensy adapter Board for NANDway - Elecrow.jpg|300px|Teensy adapter Board for NANDway - Elecrow]] | ||
==== Download ==== | |||
[http://playstationhax.it/forums/index.php?app=core&module=attach§ion=attach&attach_id=46 Teensy Adapter Platine V2.zip] / [https://mega.co.nz/#!bs00XYCY!9o5YOJ4ellYZmH2Imnep5eNpJl3lNal_ngf_2Z0VOg8 mirror] | [http://playstationhax.it/forums/index.php?app=core&module=attach§ion=attach&attach_id=46 Teensy Adapter Platine V2.zip] / [https://mega.co.nz/#!bs00XYCY!9o5YOJ4ellYZmH2Imnep5eNpJl3lNal_ngf_2Z0VOg8 mirror] | ||
Line 617: | Line 436: | ||
[http://playstationhax.it/forums/index.php?app=core&module=attach§ion=attach&attach_id=47 Teensy Adapter Platine V2.pdf] [https://mega.co.nz/#!vpsj0SCK!7R9SxOU162E7HvG0Utack2slqYetKpr3oJoYrwgeRuc mirror] | [http://playstationhax.it/forums/index.php?app=core&module=attach§ion=attach&attach_id=47 Teensy Adapter Platine V2.pdf] [https://mega.co.nz/#!vpsj0SCK!7R9SxOU162E7HvG0Utack2slqYetKpr3oJoYrwgeRuc mirror] | ||
{{Hardware Flashers}}<noinclude>[[Category:Main]]</noinclude> | {{Hardware Flashers}}<noinclude>[[Category:Main]]</noinclude> |