User contributions for PedalPCB
Jump to navigation
Jump to search
6 January 2023
- 20:5220:52, 6 January 2023 diff hist +2,720 N SpinAsm SKP Created page with "==SKP== {| class="wikitable" |+ !Mnemonic !Operation !Instruction coding |- |SKP |CMASK N |CCCCCNNNNNN000000000000000010001 |} ======Description====== The SKP instruction allows conditional program execution. The FV1 features five condition flags that can be used to conditionally skip the next N instructions. The selection of which condition flag(s) must be asserted in order to skip the next N instructions is made by the five bit condition mask “CMASK”. Only if..." Tag: Visual edit
- 20:4620:46, 6 January 2023 diff hist +18 Main Page →SpinAsm Reference Tags: Reverted wikieditor
- 20:4620:46, 6 January 2023 diff hist +1,098 N SpinAsm EXP Created page with "==EXP== {| class="wikitable" |+ !Mnemonic !Operation !Instruction coding |- |EXP |C * EXP(ACC) + D |CCCCCCCCCCCCCCCCDDDDDDDDDDD01100 |} ======Description====== EXP will multiply 2^ACC with C and add the constant D to the result. Since ACC (in it’s role as the destination for the EXP instruction) is limited to linear values from 0 to +0.99999988, the EXP instruction is limited to logarithmic ACC values (in it’s role as the source operand for the EXP instruction) ..." Tag: Visual edit
- 20:4420:44, 6 January 2023 diff hist +18 Main Page →SpinAsm Reference Tags: Reverted wikieditor
- 20:4420:44, 6 January 2023 diff hist +998 N SpinAsm LOG Created page with "==LOG== {| class="wikitable" |+ !Mnemonic !Operation !Instruction coding |- |LOG |<nowiki>C * LOG(|ACC|) + D</nowiki> |CCCCCCCCCCCCCCCCDDDDDDDDDDD01011 |} ======Description====== LOG will multiply the Base2 LOG of the current absolute value in ACC with C and add the constant D to the result. It is important to note that the LOG function returns a fixed point number in S4.19 format instead of the standard S.23 format, which in turn means that the most negative Base2 LO..." Tag: Visual edit
- 20:4220:42, 6 January 2023 diff hist +1 SpinAsm AND No edit summary Tag: Visual edit
- 20:4120:41, 6 January 2023 diff hist +18 Main Page →SpinAsm Reference Tags: Reverted wikieditor
- 20:4120:41, 6 January 2023 diff hist +1,011 N SpinAsm XOR Created page with "==XOR== {| class="wikitable" |+ !Mnemonic !Operation !Instruction coding |- |XOR |ACC ^ MASK |MMMMMMMMMMMMMMMMMMMMMMMM000010000 |} ======Description====== XOR will perform a bit wise "xor" of the current ACC and the 24bit MASK specified within the instruction word. The instruction will invert ACC provided MASK equals $FFFFFF. (see also the pseudo opcode section) {| class="wikitable" |+ !Name !Width !Entry formats, range |- |M |24 Bit |Binary Hex ($000000 - $FFFFFF) Sy..." Tag: Visual edit
- 20:3920:39, 6 January 2023 diff hist +17 Main Page →SpinAsm Reference Tags: Reverted wikieditor
- 20:3920:39, 6 January 2023 diff hist +1,032 N SpinAsm OR Created page with "==OR== {| class="wikitable" |+ !Mnemonic !Operation !Instruction coding |- |OR |<nowiki>ACC | MASK </nowiki> |MMMMMMMMMMMMMMMMMMMMMMMM000001111 |} ======Description====== OR will perform a bit wise "or" of the current ACC and the 24bit MASK specified within the instruction word. The instruction might be used to load a constant into ACC provided ACC contains $000000 {| class="wikitable" |+ !Name !Width !Entry formats, range |- |M |24 Bit |Binary Hex ($000000 - $FFFFFF)..." Tag: Visual edit
- 20:3620:36, 6 January 2023 diff hist +36 Main Page No edit summary Tags: Reverted Visual edit: Switched wikieditor
- 20:3620:36, 6 January 2023 diff hist +25 Main Page No edit summary Tags: Reverted Visual edit: Switched wikieditor
- 20:3420:34, 6 January 2023 diff hist +110 N FV1Dev Created page with "Using the FV1Dev on Microsoft Windows Using the FV1Dev on Apple macOS Using the FV1Dev on Ubuntu" current Tag: wikieditor
- 20:3320:33, 6 January 2023 diff hist +938 N Using the FV1Dev on Ubuntu Created page with "This method has been tested on Ubuntu 18.04 LTS. Other versions may work, but have not been verified. == Installation == Open a Terminal window and enter the following: Step 1: '''Update package information''' <code> sudo apt-get update </code> Step 2: '''Install libusb''' <code> sudo apt-get install libusb-1.0 </code> Step 3: '''Install SRecord''' <code> sudo apt-get install srecord </code> Step 4: '''Download FV1Dev Bundle for Ubuntu''' http://wiki.pedalpc..." Tag: wikieditor
- 20:3320:33, 6 January 2023 diff hist +1,005 N Using the FV1Dev on Apple macOS Created page with "This method has been tested on macOS Sierra and Mojave. Other versions may work, but have not been verified. == Installation == Open a Terminal window and enter the following: Step 1: '''Install Homebrew''' <code><nowiki>/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"</nowiki> </code> Step 2: '''Install libusb''' <code> brew install libusb </code> Step 3: '''Install SRecord''' <code> brew install srecord </cod..." Tag: wikieditor
- 20:3020:30, 6 January 2023 diff hist 0 N File:Asprogrammer-selectdevice.png No edit summary current
- 20:3020:30, 6 January 2023 diff hist +1,639 N Using the FV1Dev on Microsoft Windows Created page with "This method has been tested on Microsoft Windows 10. Other versions may be compatible but have not been verified. ''All links to software downloads are provided for convenience only. PedalPCB provides no guarantee about the fit or function of third party software.'' == Download FV1Dev Bundle for Windows == http://wiki.pedalpcb.com/files/FV1Dev-Windows.zip FV1Dev Bundle for Windows == Configure AsProgrammer to Read / Write 24LC32A EEPROMs == Choose PedalPCB /..." Tag: wikieditor
- 20:2120:21, 6 January 2023 diff hist +71 SpinAsm AND →Coding Example Tag: Visual edit
- 20:2020:20, 6 January 2023 diff hist +962 N SpinAsm AND Created page with "==AND== {| class="wikitable" |+ !Mnemonic !Operation !Instruction coding |- |AND |ACC & MASK |MMMMMMMMMMMMMMMMMMMMMMMM000001110 |} ======Description====== AND will perform a bit wise "and" of the current ACC and the 24bit MASK specified within the instruction word. The instruction might be used to load a constant into ACC provided ACC contains $FFFFFF or to clear ACC if MASK equals $000000. (see also the pseudo opcode section) {| class="wikitable" |+ !Name !Width !Ent..." Tag: Visual edit
- 20:1620:16, 6 January 2023 diff hist +1,230 N SpinAsm SOF Created page with "== SOF == {| class="wikitable" |+ !Mnemonic !Operation !Instruction coding |- |SOF |C * ACC + D |CCCCCCCCCCCCCCCCDDDDDDDDDDD01101 |} ====== Description ====== SOF will multiply the current value in ACC with C and will then add the constant D to the result. Please note the absence of an integer entry format for D. This is not by mistake but it should emphasize that D is not intended to become used for integer arithmetic. The reason for this instruction is that the 11 bit..." Tag: Visual edit
- 16:4616:46, 6 January 2023 diff hist +32 Main Page →Component References Tag: Visual edit
- 16:4516:45, 6 January 2023 diff hist +47 N Resistor Color Code Chart Created page with "File:PedalPCB Resistor Color Code Chart.png" current Tag: Visual edit
- 16:2616:26, 6 January 2023 diff hist +34 N File:PedalPCB Resistor Color Code Chart.png No edit summary current
5 January 2023
- 17:5217:52, 5 January 2023 diff hist +17 Main Page →To Do Tag: Visual edit
- 17:5117:51, 5 January 2023 diff hist −15 JFET chart No edit summary Tag: Visual edit
- 17:5117:51, 5 January 2023 diff hist +252 N JFET chart Created page with "{| class="wikitable" |+ ! colspan="3" | ! colspan="3" |Calculated |- !Part Number !VGSoff (Volts) !Idss (mA) !Vgs (Volts) !gm (mS) !@Id (mA) |- |MPF111 | -1.94 |1.55 | -1.24 | -0.574 |0.2 |- |MPF111 | -1.93 |1.51 | -1.23 | -0.579 |0.2 |- | | | | | | |}" Tag: Visual edit
3 January 2023
- 17:0417:04, 3 January 2023 diff hist +137 MMBFJ201 No edit summary current Tag: Visual edit
- 17:0417:04, 3 January 2023 diff hist +114 MMBFJ201 No edit summary Tag: Visual edit
- 17:0217:02, 3 January 2023 diff hist +668 N MMBFJ201 Created page with "File:MMBFJ201-pinout.png Marking: 62P or 62Q {| class="wikitable" |Manufacturer: |onsemi |- |Product Category: |JFET |- |Technology: |Si |- |Mounting Style: |SMD/SMT |- |Package / Case: |SOT-23 |- |Transistor Polarity: |N-Channel |- |Configuration: |Single |- |Vgs - Gate-Source Breakdown Voltage: | - 40 V |- |Gate-Source Cutoff Voltage: | - 1.5 V |- |Drain-Source Current at Vgs=0: |1 mA |- |Pd - Power Dissipation: |350 mW |- |Minimum Operating Temperature: | - 55 C..." Tag: Visual edit
- 17:0217:02, 3 January 2023 diff hist +15 N File:MMBFJ201-pinout.png No edit summary current
- 02:5102:51, 3 January 2023 diff hist +18 Drill Sizes No edit summary current Tag: Visual edit
- 02:5002:50, 3 January 2023 diff hist +325 N Drill Sizes Created page with "{| class="wikitable" |+ |3mm LED |1/8" |- |3mm LED Bezel |15/64" |- |3mm LED Lens |11/64" |- |5mm LED |13/64" |- |5mm LED Bezel |5/16" |- |5mm LED Lens |1/4" |- |Toggle Switch |15/64" |- |16mm Pot |9/32" |- |1/4" Enclosed Jack |3/8" |- |3PDT Footswitch |15/32" |- |DC Jack (External Nut) |1/2" |- |DC Jack (Lumberg) |5/16" |}" Tag: Visual edit
2 January 2023
- 21:3621:36, 2 January 2023 diff hist +20 Jacks No edit summary current Tag: Visual edit
- 18:0518:05, 2 January 2023 diff hist +48 EIA-96 SMD Resistor Codes No edit summary Tag: Visual edit
- 18:0318:03, 2 January 2023 diff hist −42 PCB list by SKU No edit summary Tags: Manual revert Visual edit
- 18:0318:03, 2 January 2023 diff hist +42 PCB list by SKU No edit summary Tags: Reverted Visual edit
- 18:0218:02, 2 January 2023 diff hist +22 Main Page →To Do Tag: Visual edit
- 17:5817:58, 2 January 2023 diff hist +1,292 N PCB list by SKU Created page with "{| class="wikitable" |+ !SKU !Project Name |- |PCB001 |Thermionic Distortion |- |PCB002 |SOIC-28 Adapter |- |PCB003 |Kliche Overdrive |- |PCB004 |Grover Drive |- |PCB005 |Cyborg Drive |- |PCB006 |Crystal Drive |- |PCB007 |Blue Breaker |- |PCB008 |BuGGFX Raincoat |- |PCB009 |Celestial Drive |- |PCB010 |Dream Fuzz |- |PCB011 |Kazoo Fuzz |- |PCB012 |Muffin Fuzz |- |PCB013 |Mesmerizer |- |PCB014 |Distortr |- |PCB015 |Souldrive |- |PCB016 |Fuzz Foundry |- |PCB017 |Pauper |- |..." Tag: Visual edit
- 17:4717:47, 2 January 2023 diff hist −41 EIA-96 SMD Resistor Codes No edit summary Tag: Visual edit
- 17:4617:46, 2 January 2023 diff hist +283 EIA-96 SMD Resistor Codes No edit summary Tag: Visual edit
- 17:4417:44, 2 January 2023 diff hist +180 EIA-96 SMD Resistor Codes No edit summary Tag: Visual edit
- 17:4217:42, 2 January 2023 diff hist +834 EIA-96 SMD Resistor Codes No edit summary Tag: Visual edit
- 17:3517:35, 2 January 2023 diff hist −220 Op Amp Slew Rates No edit summary current Tag: Visual edit
- 17:3317:33, 2 January 2023 diff hist +67 Op Amp Slew Rates No edit summary Tag: Visual edit
- 17:2917:29, 2 January 2023 diff hist −1 SMD Component Lookup No edit summary Tag: wikieditor
- 17:2817:28, 2 January 2023 diff hist −89 SMD Component Lookup No edit summary Tag: Visual edit
- 17:2317:23, 2 January 2023 diff hist +180 SMD Component Lookup No edit summary Tag: Visual edit
- 17:0117:01, 2 January 2023 diff hist −28 SMD Component Lookup No edit summary Tags: Manual revert Visual edit
- 17:0117:01, 2 January 2023 diff hist +28 SMD Component Lookup No edit summary Tags: Reverted Visual edit
- 17:0017:00, 2 January 2023 diff hist +115 SMD Component Lookup No edit summary Tag: Visual edit