cartreader/hardware/vselect
Ancyker 75f14b35bd
VSELECT Module Rev 3
Refreshed things a bit to improve clarity, make installation easier, and to reduce costs when manufacturing in bulk. There is no reason to upgrade already installed modules to this revision.

* Changed the module to be installed on the back of the PCB again as it is much easier to install that way.
* Added pad for the STAT pin. There's no real use for this at the moment.
* Changed the layout slightly to allow room for all of the capacitors' legends. This should make things more clear when assembling a module by hand.
* Changed the legends for the jumper pads to use the net name instead of the designator. This should make things easier during installation.
* Added legends to specify 3.3V/5V for the pads that connect to the power switch footprint. Hopefully, this helps keep people from installing the module incorrectly.
* Updated the TPS2113 footprint to the new one that allows using either the TSSOP or SON package. This should give more flexibility regarding part availability.
* Changed part numbers to more readily available parts. This should reduce the cost of machine assembly.
2024-08-26 11:29:01 -04:00
..
fabrication-toolkit-options.json VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
fp-lib-table VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
README.md VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
sym-lib-table VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
VSelect_bom.csv VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
VSelect_gerber.zip VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
VSelect-top-pos.csv VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
VSelect.kicad_pcb VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
VSelect.kicad_prl VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
VSelect.kicad_pro VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00
VSelect.kicad_sch VSELECT Module Rev 3 2024-08-26 11:29:01 -04:00

VSELECT: Automatic Voltage Selection Module

The VSELECT module automates voltage selection on HW5 by allowing the firmware to set the voltage. The module version is intended to be soldered in place of the voltage selection switch. You cannot use the VSELECT module and a power LED at the same time.

Ordering the PCB and Installing the components

The VSELECT module requires SMD/SMC (surface-mounted devices/components) soldering. The pads have been extended slightly to aid in hand-soldering. While files suitable for use with JLCPCB's PCBA service have been included, these are unsuitable for most people to use due to the minimum order quantity. If you want fewer than 10 modules it will be cheaper to order them from someone selling pre-built ones.

Installation

Instructions to build as well as to install the module have moved to the wiki.

Configuration

The module requires code to function properly. The OSCR should still power on even without the code changes but the voltage will not automatically toggle. To enable automatic toggling, locate this bit of code:

/*==== HARDWARE MODULES ===========================================*/

/* [ Automatic Voltage Selection ---------------------------------- ]
    Enable this if you have the VSELECT module.
*/

//#define ENABLE_VSELECT

...and change it to:

/*==== HARDWARE MODULES ===========================================*/

/* [ Automatic Voltage Selection ---------------------------------- ]
    Enable this if you have the VSELECT module.
*/

#define ENABLE_VSELECT

After that simply update/program/flash your Arduino/OSCR as normal. Make sure you enable this every time you update. You can test that voltage switching is occurring with a multimeter by checking between ground and VCC.

Updating

When the OSCR is using VSELECT-enabled firmware there are a few extra steps you need to take when flashing firmware. First, before connecting the OSCR to a computer, remove the SD card. Next, connect the OSCR to your computer and wait. Once it prompts you, press the button to set the voltage to 5V. Although you can flash the ATmega2560 while running at 3.3V it does not always work and seems more likely to cause the firmware to randomly be corrupt (sometimes right away, sometimes not for a few days). Although you can just reflash the firmware to it to resolve it, having to deal with it is rather inconvenient.

Troubleshooting

If the 3.3V rail is not powered (i.e. you forgot to solder the jumper on the LCD) then when the module tries to switch to that it will power off the VCC rail. This will appear as a reboot loop where you'll see it briefly power on and then immediately power off only to immediately power on again. This is because the module starts in 5V mode and switches to 3.3V after the system boots and tells it to do so.