datasheet,schematic,electronic components, service manual,repairs,tv,monitor,service menu,pcb design
Schematics 4 Free
Service manuals, schematics, documentation, programs, electronics, hobby ....


registersend pass
Bulgarian - schematics repairs service manuals SearchBrowseUploadWanted

Now downloading free:

free download

Home electronics, consumer electronics, professional electronics - Television sets (plasma, HDTV, LCD, TFT, Big screen tv), Monitors (TFT-LCD panels, conventional CRT), VCR, DVD, Car Audio etc.

File information:
File name:Orange2-DOS + USERPORT2 +96_hpl files raboti na XP_SP3.rar
[preview ]
Size:321 kB
Extension:
Mfg:
Model:
Original:
Descr:Orange2-DOS + USERPORT2 +96_hpl files raboti na XP_SP3
Group:Electronics > Software
Uploaded:18-02-2010
User:lz1ico
Multipart:No multipart

Information about the files in archive:
Decompress result:OK
Extracted files:8
File name =Read Me=.txt

+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ This file was downloaded from CarRadioLand by Obrenov Igor +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ http://www.carradioland.cjb.net +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Please, feel free to join at our discussion GROUP about Car Radio Decoding!!! Send blank message on eMail: [email protected] And don't forget to visit our official web site: +-+-+-+-+-+-+-+-+-+-+-+-+ www.cmdelectronic.cjb.net +-+-+-+-+-+-+-+-+-+-+-+-+ We are in opportunity to offer you misc equipment, devices, programmers and CDs about unlocking and repairng mobile phones, car radios and others... Equipment: Quick 850 Hot Air Quick 936 Solder Station Devices: Universal BOX v1.0 Nokia DCT-4 Flasher SonyEricsson Terminator Samsung Unlock/Flash BOX Motorola Full Emmi Box Motorola P2K BOX Motorola Emmi Clip v3.0 Programmers: Hi-Quality EEprom Programmer Motorola SMART EEPROM Programming Tool Motorola HC05L28 EEPROM Programming Tool TMS370Cx5x, Cx6x EEPROM Programming Tool Motorola MCU Programmer MC68HC08AZ32, MC68HC908AZ60, AS60, AB32 If you need more information about our products, visit: +-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+ www.cmdproducts.cjb.net and www.cmdcdshop.cjb.net +-+-+-+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+-+-+ Regards, Obrenov Igor CMD electronic, Yugoslavia +-+-+-+-+-+-+-+-+-+-+-+-+ www.cmdelectronic.cjb.net +-+-+-+-+-+-+-+-+-+-+-+-+
File name adapt2.txt

Orange 2 Adapters: ---------------------------------------------------------------------- CHIP=MDA2061,MDA2062,(128x8) DIP14 PIN: 1 3 6 7 8 9 10 12 13 14 Programmer: Gnd Vp Vcc Gnd P2 P3 P1 P0 P4 Vcc Vp Programm Voltage (Pin 3) = +20 Volt ! external ---------------------------------------------------------------------- CHIP=S2100R Seiko/Pioneer DIP8 PIN: 1 2 3 4 5 6 7 8 NAME: DAT CE Gnd CLK RST Vcc Programmer: P1 P0 - Gnd - P2 P3 Vcc ----------------------------------------------------------------------
File name ext_con.txt

Orange2 external connector ‚­Ґи­Ё© ࠧꥬ Їа®Ја ¬¬ в®а  Orange-2: ----- | 1 2 | 1 - GND 2 | 3 4 | 3 - GND 4 - P0 | 5 6 | 5 - GND 6 - P1 7 8 | 7 - GND 8 - P2 9 10| 9 - GND 10 - P3 |11 12| 11 - GND 12 - P4 |13 14| 13 - GND 14 - P5 |15 16| 15 16 - VCC -----
File name HPL ezik.txt

Проекты > Orange > Схема > Описание > Язык HPLTM > FAQ > Форум Описание языка HPL rev 2.0 25.05.2001 Язык HPL (Hardware Programming Language) разработан специально для описания низкоуровневых протоколов обмена с различными устройствами. Рассмотрим реализацию языка HPL в трансляторе программатора Orange. Примеры обозначены символом (*), Изменения - символом '!'. Символ ';' является признаком комментария - конец строки начиная с этого символа не обрабатывется. Числа. Числа могут задаваться в двоичном, десятичном и шестнадцатеричном формате: (*) 1234 - десятичная константа (*) 010101B - двоичная (*) 0x1234 или 01234H - шестнадцатеричная. Адрес. Ключевое слово ADR содержит текущее значение адресного регистра (32 разряда), по которому выполняется чтение/запись данных. Для адресного регистра могут использоваться операции установки (только в пользовательских секциях) и инкремента (в секциях блочного чтения и записи) Данные. Для доступа к данным в буфере по текущему адресу используется ключевое слово DATA. Данные доступны пословно (8 или 16 бит в зависимости от установленного типа памяти) или поразрядно. Регистры. Для выполнения математических и логических операций, описания констант и хранения данных можно использовать 16 тридцатидвухразрядных регистров R0...R9,RA...RF. Регистры R0...R9 универсальные, регистры RA...RF специального назначения. Через них передаются пераметры: RA - передача параметров RB - размер блока чтения/записи RC - зарезервирован RD - номер области для микросхем, имеющих несколько областей памяти, например, для микроконтроллеров. RE - глобальный код операции (1-READ,2-VERIFY,3-WRITE,4-USER) RF - полный размер памяти. Если значение, передаваемое специальным регистром не используется, он может использоваться как универсальный внутри секций. Описание протокола состоит из нескольких секций, обязательными из них являются три: начальная, [READ] - чтение слова и [WRITE] - записи слова. Кроме этого, дополнительно можно использовать необязательные секции: [SETUP] - начальная установка, вызывается однократно при загрузке модуля [INIT] - инициализация, вызывается однократно перед всеми операциями. [WRITEINIT] - инициализации записи, вызывается один раз перед началом записи EEPROM. [WRITEEND] - завершение записи, вызывается один раз после записи всех слов EEPROM. [READBLOCK] - Чтение блока [WRITEBLOCK] - Запись блока [END] - завершение операции, вызывается один раз для любой операции. При необходимости могут быть описаны дополнительные пользовательские секции, которые вызываются однократно при выборе в меню. Их названия также записываются в скобках []. ! Можно использовать локальные секции (функции). Для описания функций перед именем добавляется символ '_' : (*) [_START] Функции должны быть описаны в модуле до их использования. Вызов функции осуществляется по имени: (*) _START. Передача параметров возможна с использованием регистров. Разрешено использовать
File name PARTLIST.TXT

Orange-2 Part List: Part Value DD1 74LS05 (74ALS05) DD2 74HCT14 (74HCT04) VT1 Si p-n-p (Љ’209,Љ’502,2N2428) D1 Љ„522,1N4002 D2 LED (Ђ‹307) R1-R6 4.7K (Or Resistor Network) R7-R12 4.7K (Or Resistor Network) R13 2.7K R14 1.0K R15 10K R16 750 R17 7.5K C1 10uF/16V C2,C3 0.1uF/50V X1 DB25M X2 DJK02 (SC21)Power Jack X3 IDS16
File name Readme.txt

It is normally not possible to access UserPort directly from Visual Basic because it is not possible to use inline assembler in Visual Basic. This program shows how this can be done by letting EnumWindows call our machine code as a callback and hence our IN and OUT assembler instructions can be called from Visual Basic. This makes it possible for you to ship your product without the DLL.
File name Uputstvo.txt

Iskopirati folder: Orange 2 v3.9 na hard disk. Da bi Orange mogao pravilno da radi, potrebno ga je registrovati. Da bi se to uradilo - kliknuti na fajl: REGISTRACIJA.BAT Orange ce traziti da unesete ime (minimalno 4 slova), pa ce vam posle toga dati ID code i na kraju ce traziti kljuc (Enter key:). Kljuc se kalkulise softverom iz foldera: Keygenerator Pokrenuti softver i upisati trazena polja (ime i ID code). Kada ste to upisali, kliknite na GENERATE i dobicete odgovarajuci kljuc. Kljuc ukucati na odgovarajuce mesto (Enter key: ...) - tamo gde ga je Orange trazio. Orange ce prijaviti da je sve proslo OK i da je sada registrovan. Orange ubuduce pokretati dvoklikom na fajl: Orange.exe To je sve.
File name UserPort.pdf

UserPort Documentation 1 History UserPort V1.0: First release. UserPort V1.1: Changes from version 1.0 to 1.1: · Added Test LPT1 button · Added Test Spkr button · Start button is grayed when the driver is started · Stop button is grayed when the driver is stopped · UserPort driver now works on Multiprocessor machines and Hyperthreading machines · UserPort now works on all Windows XP machines · Settings are now stored in HKLM\System\ CurrentControlSet\Services\UserPort because the driver failed to read the key HKLM\Software\UserPort · \\.\UserPort access is now stopped when the \\.\UserPort file is closed · Sleep(100) is no longer needed after the CreateFile("\\.\UserPort"...) call · Address range is extended to 0x7a80 for all processes and to 0xffff for \\.\UserPort processes · Added Java and VisualBasic example files · Removed HandlerExceptionFilter from C example file · Updated C and PAS example files · The registry settings could be corrupted on certain circumstances, this bug has been solved · UserPort did not run stable on Hyperthreading machined (rebooted without bluescreen). Solved by using the hard coded value of 0x20AC for the IOPMPtr variable on Windows XP/2000 machines UserPort V2.0: Changes from version 1.1 to 2.0: · Changed to PsSetCreateProcessNotifyRoutine method · Removed the ugly and assembler modification of the TSS (not needed now with the process notification routine) · Changed to only one IOPM registry map · Address range is extended to 0xffff for all processes 2 Summary UserPort.SYS is a kernel mode driver for Windows NT/2000/XP that gives user mode programs access to I/O Ports. This makes it possible to access hardware directly from a normal executable in the same way as under Windows 95/98/ME. This driver does not work on Windows 95/98/ME and there is really no need to run it anyway because I/O ports are always granted to user mode programs on these operating systems. The driver can be used for the following purposes: · To run software on Windows NT/2000/XP that normally only runs on Windows 95/98/ME. · To easily access hardware like the parallel port and other I/O ports. So what's the drawback with this wonderful software? Microsoft has for security reasons prohibited user mode access to I/O ports. Opening up I/O ports creates a big security hole in your system. You should therefore carefully set the grant lists to only give user mode access to the specific I/O ports you need. The default values opens up a wide range of I/O ports and you should narrow it down. The correct driver approach for a commercial product is to create a driver that communicates with the hardware and the communication between the driver and your application should be done through CreateFile/ReadFile/WriteFile/DeviceIoControl. But this is not my aim with the driver. My aim with the driver is listed above. There are a lot of parallel port drivers out there which gives control to user-mode applications in a nice way. 3 Installation The driver can be



>> Download document << eServiceInfo Context Help



Was this file useful ? Share Your thoughts with the other users.

User ratings and reviews for this file:

DateUserRatingComment

Average rating for this file: 0.00 ( from 0 votes)


Similar Service Manuals :
- - - - - - -
 FB -  Links -  Info / Contacts -  Forum -   Last SM download : Nordmende nordmende globetrotter 4 601 sm

script execution: 0.01 s