High-level skills for Peugeot car owners: Tips for using diagnosis and repair circuit diagrams (SEDRE)
Software download and installation: Peugeot Service Box-DocBackup+SEDRE download, install, register full function / / www1.xcar.com.cn/bbs/viewthread.php?tid=30499091 thanks icbcodcxuser15962740
Peugeot 307 maintenance and training materials
* /
* / Peugeot 307 maintenance and training materials /
PDF version of the circuit diagram book
2009 original circuit diagram of Dongfeng Peugeot 307-T6
* / p-6438636602188.html
08 Dongfeng Peugeot 307 hatchback 2.0 original factory circuit diagram https://wenku.baidu.com/view/e336708e951ea76e58fafab069dc5022abea4614.html
Small mouth
Dongfeng Peugeot 307 1.6 automatic transmission VAN+CAN whole vehicle circuit diagram
* / p-837208502.html
307 check circuit and car wiring harness experience sharing practice see my other post
/ / www.xcar.com.cn/bbs/viewthread.php?tid=90466207
Circuit fault diagnosis: the principle of detection, tracking and analysis
Sometimes the circuit fault is more hidden than the machinery, it is not easy to see the fault point, and the electrical principle is more complex. A detailed circuit diagram is required to accurately determine the fault location.
Except that the 307T5 fullcan model requires more than 10100.
The other two arbitrary numbers
There are some vehicles with nameplates.
Circuit diagram BSI1 is the cockpit safety box (intelligent control box, body computer) 2635 is the rear right taillight component code
6V NR 6-wire black socket 2222 2100 is the wire number coding specification see my other post. / / www.xcar.com.cn/bbs/viewthread.php?tid=90466207
16VNR is a 16-channel socket black
The reversing lamp is the fifth terminal of 6VNR, which is connected to terminal 6 of BSI1 16VNR through 46HAB wire speed, and the wire number is 222.
Wire cod
There are some problems with the software, and some pictures cannot be displayed. Xuser15962740 analyzed in the post that the tomcat that comes with the system did not return the gzip header. With the nginx proxy, add the GZIP header, and chrome and firefox can be opened. After that, I set up the environment of jdk1.4 and wrote a filter and put it in tomcat. I don’t know much about programming. I’m a borrowlism. Xuser15962740 is amazing.
/ / nginx.org/en/download.html
I chose version 1.14.2, version windows.
Location / Sdr {
Proxy_pass / / 127.0.0.1:6092/Sdr
Sub_filter ‘svg-xml” svg+xml’
}
Location / Sdr/svgLoader {
Proxy_pass / / 127.0.0.1:6092/Sdr/svgLoader
Add_header Content-Type ‘text/html; charset=utf-8’
Add_header Content-Encoding gzip
}
The above code will be messed up, subject to the picture.
Run nginx.exe to work properly, and you can make a shortcut to send it to the desktop
Google browser, Firefox browser printing is not normal, because the print code is wrong, svg+xml is written as svg+xml, I added the sub_filter ‘svg+xml” svg+xml’; statement to replace. Browsing is normal.
Print the circuit diagram, the worst effect is IE, the generated PDF picture, blurred, can not see, Firefox browser uses version 56, print high definition, the best is Oppon browser and Google browser, generate PDF picture, enlarged very clear.
/ / 127.0.0.1/Sdr/logon.jsp
The SVGZ file that cannot be viewed has been compressed and decompressed using winrar 7ZIP, which is a text file in xml format. So you have to use a proxy, add a gzip header, and let the browser recognize the format.
After SEDRE is running, the default address is / / 127.0.0.1:6092/Sdr/logon.jsp
Use the agent to run the nginx address is / / 127.0.0.1/Sdr/logon.jsp the difference is just the port number
Two addresses work at the same time, not here or there. Better than JDK environment switching.
After the nginx is running, you have to go through the task manager before you can close it.
You can do the batch command killnginx.bat
@ echo on
Tasklist / fi “imagename eq nginx.exe”
Taskkill / im nginx.exe / f
@ cmd.exe
Cmd
Restart the batch command reload.bat
@ echo on
Nginx-s reload-c. / conf/nginx.conf
Pause
Regular electricity: several safety devices connected to the battery-8V NR-2V GR are F11 diagnostic socket F5 F6 window F15 door lock F17 rear window heating.
Open the key has electricity: F7 car interior light reading light F9 cigarette lighter
Intelligent electricity: the remote control is powered on by BSI, the door is locked, the power is delayed, the F12 radar F13 has a sense of rain, the engine F14 combination instrument can still read the odometer after locking the car, and the fan still works.
Waiting machine: F8 radio C-screen remote control com2000 F10 gearbox. SH insurance is connected to the customer mode, which means regular electricity, and is connected to the inventory mode. After the BSI sleeps, there is no electricity, the radio cannot remember, the remote control will not work, and the car will not be used for a long time. It is recommended to use the inventory mode.
Some power supplies are also controlled by +8V (+ACC) power supply and BSI control. Economy mode or battery voltage is low, does not work, and has no electricity, such as cigarette lighter, window rear heating
server {
listen 60;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location /Sdr {
proxy_pass //127.0.0.1:6092/Sdr;
sub_filter ‘svg-xml’ ‘svg+xml’;
}
location /Sdr/svgLoader {
proxy_pass //127.0.0.1:6092/Sdr/svgLoader;
}
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
Running nginx
Use proxy plus gzip The address is //127.0.0.1/Sdr/logon.jsp
Only replacing svg-xml address is //127.0.0.1:60/Sdr/logon.jsp