Update 'Hardware Setup'

master
Levi Pearson 2022-03-09 10:04:51 +00:00
parent 3851723759
commit 6ccca99f6e
1 changed files with 14 additions and 16 deletions

@ -8,27 +8,12 @@ The long sides of the board each have a series of 0.1"-between-center plated thr
If the headers are supplied in one long strip, place the long end of the headers into the holes on one side, lining up one end of the header strip with the end of the board. Mark the position between the last pin that fits in a hole (it should be 20 pins down) and then remove it and cut or snap the header cleanly at the marked point.
Decide if you want wires to attach to the top of the board (where the jumpers are already sticking up) or the bottom (which will make it easier to reach the reset button). Now, put the *short* end of the headers into the row of holes on one side of the board. Hold it or prop it in place while you solder *one* joint from the other side.
Decide if you want wires to attach to the top of the board (where the jumpers are already sticking up) or the bottom (which will make it easier to reach the reset button). The bottom orientation is also convenient for putting the BluePill in a solderless breadboard. Now, put the *short* end of the headers into the row of holes on one side of the board. Hold it or prop it in place while you solder *one* joint from the other side.
At this point the header will most likely be a little crooked, but it will be held in place by the hardened solder joint. Apply light pressure in the direction that would straighten it with one hand while you re-heat the solder joint on the other side until it's just hot enough to allow the header to be adjusted straight. Remove the iron and hold the header still for a moment until the solder cools. You might need to repeat a time or two to get it right, but it's far easier with only one solder joint.
Once you are happy with the header's position, solder in the rest of the pins from the back. Make sure the iron is heating both the pin and the plated hole for a moment, then bring the solder to the junction. It should flow down into the hole and around the pin, forming a nicely filleted joint, but it may take some practice before that happens reliably. If you have trouble, ensure that your iron tip starts out "tinned", i.e. with a coating of melted solder on it. This coating should be substantial but not a blob; it helps to conduct heat from the tip to the components you are trying to solder.
### USB Resistor Fix
**Note**: This isn't necessary for the workshop, but you may want to do it for your own projects
To use the Blue Pill as a USB device, a hardware mod may be required due to a design flaw that persists on many of these inexpensive boards. USB requires a pull-up resistor on the D+ line of a specific value; while some host adapters are tolerant of weaker pull-ups, others are not and will fail to enumerate the device. Fortunately the fix isn't hard.
Check the resistor labeled "R10" on the back side of the board. The correct value is 1.5kOhm, which should be marked "152" on the tiny resistor. Common incorrect values are 10kOhm (marked "01C" or "103") or 4.7kOhm (marked "472"). If you have an incorrect value, you might try connecting it via different USB ports and hubs to see if any work as-is, but if not, you'll have to modify the board.
These are 0603 size surface mount resistors, which are extremely inexpensive from standard component distributors like Mouser, Digikey, etc., but they can require some skill and patience to replace with tweezers and a soldering iron. If you are not up to that, you can hook a small through-hole resistor between PA12 and +3.3V pins, which places it in parallel with the one at R10. See this [resistance calculator](https://www.allaboutcircuits.com/tools/parallel-resistance-calculator/) for help picking resistors; depending on what values you have available and what R10 is, you may need more than one.
If R10 is 10kOhm, 1.8kOhm would be close to ideal, but you are more likely to find a 1.5kOhm and it is likely to work. If R10 is 4.7kOhm, a 2.3kOhm would be close to ideal, but you are more likely to find a 2.2kOhm or 2.7kOhm, and either would be likely to work.
If USB still does not work, it is sometimes the case that the USB connector is not soldered properly, and reflowing the USB solder joints can get it working.
## STLinkV2 Clone Debugger
You need to connect the the debugger (which looks like a USB flash drive with a connector at its far end) correctly to the Blue Pill board in order to power it, load programs, and debug them. The debugger has 10 pins on its connector, but only 4 need to be connected to the board.
@ -63,3 +48,16 @@ The encoder has a right-angle pin header with 5 pins:
+ GND
There are other possibilities for connecting CLK, DT, and SW, but the example code uses these in GPIO mode via GPIO A.
## USB Resistor Fix
**Note**: This isn't necessary for the workshop, but you may want to do it for your own projects
To use the Blue Pill as a USB device, a hardware mod may be required due to a design flaw that persists on many of these inexpensive boards. USB requires a pull-up resistor on the D+ line of a specific value; while some host adapters are tolerant of weaker pull-ups, others are not and will fail to enumerate the device. Fortunately the fix isn't hard.
Check the resistor labeled "R10" on the back side of the board. The correct value is 1.5kOhm, which should be marked "152" on the tiny resistor. Common incorrect values are 10kOhm (marked "01C" or "103") or 4.7kOhm (marked "472"). If you have an incorrect value, you might try connecting it via different USB ports and hubs to see if any work as-is, but if not, you'll have to modify the board.
These are 0603 size surface mount resistors, which are extremely inexpensive from standard component distributors like Mouser, Digikey, etc., but they can require some skill and patience to replace with tweezers and a soldering iron. If you are not up to that, you can hook a small through-hole resistor between PA12 and +3.3V pins, which places it in parallel with the one at R10. See this [resistance calculator](https://www.allaboutcircuits.com/tools/parallel-resistance-calculator/) for help picking resistors; depending on what values you have available and what R10 is, you may need more than one.
If R10 is 10kOhm, 1.8kOhm would be close to ideal, but you are more likely to find a 1.5kOhm and it is likely to work. If R10 is 4.7kOhm, a 2.3kOhm would be close to ideal, but you are more likely to find a 2.2kOhm or 2.7kOhm, and either would be likely to work.
If USB still does not work, it is sometimes the case that the USB connector is not soldered properly, and reflowing the USB solder joints can get it working.