Toshiba PF Arcade Monitors
I2C - There are 3 ICs on the I2C bus - One master and 2 slave devices. The microcontroller fills the role of the I2C master, the video amp IC is one slave device and the deflection IC is the other slave device. Below is the decoded I2C communication and some default values I observed on my test chassis. The LM1269NA is well documented and the below snippet is nothing that can't be obtained from the datasheet. The NEC C1888FCT on the other hand, couldn't find anything about it online. The below snippet was obtained by going through the extended menu while running I2C captures. This 'should' be the bulk of what is needed to re-create the MCU.
Vertical Deflection - Chassis expects ~14mH vertical deflection yoke at ~8 ohm.
Vertical Deflection IC - LA7846N
Functions similar to op-amp. Output to vertical deflection yoke via pin 3. (Pin3 -> V.Dy -> R323 -> Gnd)
R323 - 1.0Ohm ~ 3W - Appears to be the current limiting resistor for the vertical deflection.
Horizontal Deflection - Chassis expects ~300uH horizontal deflection yoke at ~1 ohm
HOT - 2SC5422 (Ref 5)
Note - 2SC5422 only switches the horizontal deflection, it does NOT switch the primary coil on the flyback. There is a separate MOSFET that swtiches just the flyback primary coil.
Flyback - TFB5085AD
Flyback Focus Pack made by Murata. Dual focus, top load w/ dynamic focus caps (Ref 1)
Focus labeled (R) (W)
Only focus wire in (R) in factory configuration.
Flyback Focus Hole diameter 4mm
Focus wire
CSA Type TV-20 XLHDPE 105C FT1 SUMITOMO-Y
Stranded
Dynamic Focus (Ref 6)
Many flyback pinouts show 10, maybe 11 pins. The TFB5085AD flyback has 14 pins and best I can tell the extra pins are for:
Pin 12 - W dynamic focus
Pin 13 - R dynamic focus
There is an apparent dynamic focus circuit on the Toshiba chassis. It consists of a transformer (T403 - TLN2168AH) that has the primary winding connected to the horizontal deflection circuit. The secondary winding is connected to the dynamic focus pin-13 on the flyback via a 3.3K ohm resistor. This should apply a parabolic voltage on the dynamic focus pin 13 and adjust the focus voltage to account for the flat screen. This will improve focus performance at the left and right edges of the screen and create a more uniform focus from center to edge. As noted in (Ref 3), a more robust dynamic focus circuit would include feedback from both the horizontal and vertical deflection circuits.
Neckboard
CRT socket - Single Focus (CR23) made by Hosiden
https://www.arcadepartsandrepair.com/store/monitors/monitor-parts/cr23-crt-socket-mp1040/
Auto Switching / S-Correction / Linearity Coil
As the monitor switches resolutions, components are added/removed from the horizontal deflection circuit to better tune for the different frequencies (15Khz, 24Khz, 31Khz). In general I believe you want an overall less inductive and less capacitive horizontal deflection circuit as the frequency increases.
The horizontal deflection circuit has a fixed 6.0mH linearity coil (L403). There are 3 relays that switch with frequency.
S401 bypasses a 6uH linearity coil - reducing down from 12uH to just 6uH.
S402 switches in an additional 220nF of parallel capacitance.
S403 switches in an additional 820nF of parallel capacitance.
Relay - S401 - DG1U - Active bypasses 6uH Linearity Coil
Relay - S402 - DG1U - Active adds in C424 - 220nF capacitor
Relay - S403 - DG1U - Active adds in C425 - 820nF capacitor
Ref
1. https://www.datasheetarchive.com/pdf/download.php?id=8d21ee92640912fa829f6bfa11cc09d4e38025
2. https://www.datasheetarchive.com/pdf/download.php?id=a6bee86237c0f20e88c2eb6a56a4552dcda8a9
3. https://www.raynetrepair.us/ceronix...circuit-function-and-circuit-description.html
4. http://monitor.espec.ws/files/vertical_dynamic_focus_circuit.pdf
5. https://datasheetspdf.com/pdf/239767/ToshibaSemiconductor/2SC5422/1
6. http://www.electronicrepairguide.com/monitor-flyback-transformers.html
7. https://www.genvolt.com/application-information/5220699f58080/Silicone-Cable
- PB9929
- Microcontroller-TMP87CK38N
- Video Amp-M52337SP
- Deflection IC - NEC C1883CT (NEC uPC 1883)
- PD1843
- Microcontroller-TMP87CM38N-5NF5
- Video Amp-LM1269NA
- Deflection IC - NEC C1888FCT (NEC uPC 1888 )
- PD2367
- Microcontroller-TMP87CM38NG
- Video Amp-LM1269NA
- Deflection IC - NEC C1888FCT (NEC uPC 1888 )
- PE0493
- Micro-TMP88PS38BNG
I2C - There are 3 ICs on the I2C bus - One master and 2 slave devices. The microcontroller fills the role of the I2C master, the video amp IC is one slave device and the deflection IC is the other slave device. Below is the decoded I2C communication and some default values I observed on my test chassis. The LM1269NA is well documented and the below snippet is nothing that can't be obtained from the datasheet. The NEC C1888FCT on the other hand, couldn't find anything about it online. The below snippet was obtained by going through the extended menu while running I2C captures. This 'should' be the bulk of what is needed to re-create the MCU.
Code:
//LM1269NA - I2C Address 0xDC
vidAdd = 0xDC;
vidCmd[0] = 0x3B; //R-Gain Control [6:0]
vidCmd[1] = 0x2E; //B-Gain Control [6:0]
vidCmd[2] = 0x32; //G-Gain Control [6:0]
vidCmd[3] = 0x5C; //Contrast Control [6:0]
vidCmd[4] = 0x5E; //DAC 1 [7:0]
vidCmd[5] = 0x73; //DAC 2 [7:0]
vidCmd[6] = 0x7D; //DAC 3 [7:0]
vidCmd[7] = 0xB2; //DAC 4 [7:0]
vidCmd[8] = 0x00; //DC Offset / OSD Control
//NEC C1888FCT - I2c Address 0x8C
defAdd = 0x8C;
defCmd[0] = 0x00; //??? Unknown Function
defCmd[1] = 0x5D; //H.Size
defCmd[2] = 0x7F; //H.Position
defCmd[3] = 0xC3; //PB (Pin Balance)
defCmd[4] = 0x40; //PAR (Parabola)
defCmd[5] = 0xBE; //PBT (Pin Balance Top)
defCmd[6] = 0x3F; //PBB (Pin Balance Bottom)
defCmd[7] = 0x32; //PCT (Pin Cushion Top)
defCmd[8] = 0xB0; //PCB (Pin Cushion Bottom)
defCmd[9] = 0xB3; //PIN (Pincushion)
defCmd[10] = 0x00; //TRP (Trapazoid)
defCmd[11] = 0x8C; //V.Size
defCmd[12] = 0x80; //V.Position
defCmd[13] = 0x5B; //SC (S-Correction)
defCmd[14] = 0x3A; //CC (C-Correction)
Vertical Deflection - Chassis expects ~14mH vertical deflection yoke at ~8 ohm.
Vertical Deflection IC - LA7846N
Functions similar to op-amp. Output to vertical deflection yoke via pin 3. (Pin3 -> V.Dy -> R323 -> Gnd)
R323 - 1.0Ohm ~ 3W - Appears to be the current limiting resistor for the vertical deflection.
Horizontal Deflection - Chassis expects ~300uH horizontal deflection yoke at ~1 ohm
HOT - 2SC5422 (Ref 5)
Note - 2SC5422 only switches the horizontal deflection, it does NOT switch the primary coil on the flyback. There is a separate MOSFET that swtiches just the flyback primary coil.
Flyback - TFB5085AD
Flyback Focus Pack made by Murata. Dual focus, top load w/ dynamic focus caps (Ref 1)
Focus labeled (R) (W)
Only focus wire in (R) in factory configuration.
Flyback Focus Hole diameter 4mm
Focus wire
CSA Type TV-20 XLHDPE 105C FT1 SUMITOMO-Y
Stranded
Dynamic Focus (Ref 6)
Many flyback pinouts show 10, maybe 11 pins. The TFB5085AD flyback has 14 pins and best I can tell the extra pins are for:
Pin 12 - W dynamic focus
Pin 13 - R dynamic focus
There is an apparent dynamic focus circuit on the Toshiba chassis. It consists of a transformer (T403 - TLN2168AH) that has the primary winding connected to the horizontal deflection circuit. The secondary winding is connected to the dynamic focus pin-13 on the flyback via a 3.3K ohm resistor. This should apply a parabolic voltage on the dynamic focus pin 13 and adjust the focus voltage to account for the flat screen. This will improve focus performance at the left and right edges of the screen and create a more uniform focus from center to edge. As noted in (Ref 3), a more robust dynamic focus circuit would include feedback from both the horizontal and vertical deflection circuits.
Neckboard
CRT socket - Single Focus (CR23) made by Hosiden
https://www.arcadepartsandrepair.com/store/monitors/monitor-parts/cr23-crt-socket-mp1040/
Auto Switching / S-Correction / Linearity Coil
As the monitor switches resolutions, components are added/removed from the horizontal deflection circuit to better tune for the different frequencies (15Khz, 24Khz, 31Khz). In general I believe you want an overall less inductive and less capacitive horizontal deflection circuit as the frequency increases.
The horizontal deflection circuit has a fixed 6.0mH linearity coil (L403). There are 3 relays that switch with frequency.
S401 bypasses a 6uH linearity coil - reducing down from 12uH to just 6uH.
S402 switches in an additional 220nF of parallel capacitance.
S403 switches in an additional 820nF of parallel capacitance.
Relay - S401 - DG1U - Active bypasses 6uH Linearity Coil
Relay - S402 - DG1U - Active adds in C424 - 220nF capacitor
Relay - S403 - DG1U - Active adds in C425 - 820nF capacitor
Ref
1. https://www.datasheetarchive.com/pdf/download.php?id=8d21ee92640912fa829f6bfa11cc09d4e38025
2. https://www.datasheetarchive.com/pdf/download.php?id=a6bee86237c0f20e88c2eb6a56a4552dcda8a9
3. https://www.raynetrepair.us/ceronix...circuit-function-and-circuit-description.html
4. http://monitor.espec.ws/files/vertical_dynamic_focus_circuit.pdf
5. https://datasheetspdf.com/pdf/239767/ToshibaSemiconductor/2SC5422/1
6. http://www.electronicrepairguide.com/monitor-flyback-transformers.html
7. https://www.genvolt.com/application-information/5220699f58080/Silicone-Cable
Last edited: