Icom IC-T90A
|
|
Bookmark Icom IC-T90A |
About Icom IC-T90AHere you can find all about Icom IC-T90A like software and other informations. For example: price, mods, manual.
Icom IC-T90A manual (user guide) is ready to download for free.
On the bottom of page users can write a review. If you own a Icom IC-T90A please write about it to help other people. [ Report abuse or wrong photo | Share your Icom IC-T90A photo ]
Manual
Preview of first few manual pages (at low quality). Check before download. Click to enlarge.
Download
(English)Icom IC-T90A, size: 3.0 MB |
Related manuals Icom IC-T90a Instruction Manual |
Icom IC-T90A
Video review
Icom IC T90A Review
User reviews and opinions
| mnachev |
9:21am on Tuesday, October 26th, 2010 ![]() |
| Sound quality??? After reading other review I am extremely surprised at what I am listening to. Amazing Creative EP-630 In-Ear Noise-Isolating Headphones (Black) I got a pair of these when I ordered my XPS computer system back in 2008. For this great price, not bad So I ordered these on Monday, early morning and after the item was finally shipped. | |
| jayajha |
12:42pm on Wednesday, September 8th, 2010 ![]() |
| Hello Bargain Hunters! lightweight, great sound, wide range, comfy none Placement of the headset in the ear of the Creative EP630 with coverage from rubber provide a fantastic experience audio in MP3 format. | |
| Austin_Hastings |
12:59am on Monday, June 28th, 2010 ![]() |
| i used egg saver and got it in 4 days....not that bad as i thought it would be 1. good bass ; 2. crisp sound ; 3. | |
| CiderJack |
6:20pm on Wednesday, May 26th, 2010 ![]() |
| The only issue that I have found is that the rubber ear buds can compress at times - I simply pull them back out, but it can be anoying at times. | |
| ogm |
4:31am on Saturday, May 15th, 2010 ![]() |
| Small price for big sound For $16.00, what can you say! I was quite pleased with the sound for such a small price. | |
| Blackhold |
12:26pm on Friday, May 14th, 2010 ![]() |
| I must be a compulsive headphone buyer. I have a lot of headphones at home, most inexpensive and not all are being used. | |
| tac |
11:21am on Monday, April 19th, 2010 ![]() |
| "This is my 3rd tape adapter for my iPod - first was Monster Cable, then Dynex (?) - which was the worst, and now this Sony one. | |
| poppacross |
5:15pm on Wednesday, April 7th, 2010 ![]() |
| I use this in my 1998 car with a tape deck to connect my ipod. I find the fm transmitters annoying, and unreliable. This is much simpler. It was fast fun and easy. Stuck the cassette in plug in my MP3 player and listen to good quality music with no static. Easy Setup","Good Quality". | |
| passa |
10:05pm on Saturday, March 27th, 2010 ![]() |
| My first IEM were "Koss Spark Plug" ( 2 pairs ) and I thought they were good, but after trying EP-630 I forgot "Plugs" like a horrible nightmare. These came with my Dell XPS 1530 and I tried them for the first time and really was impressed. | |
| roger |
12:14am on Tuesday, March 16th, 2010 ![]() |
| Heralded by the headphone enthusiast community as the KSC75 of ear buds. Creative EP-830 Noise Isolating Earphones Very disappointed with these earphones, i bought them off the back of very good reviews i had read. | |
Comments posted on www.ps2netdrivers.net are solely the views and opinions of the people posting them and do not necessarily reflect the views or opinions of us.
Documents
Rev. 7/9/2003
Introduction
The Icom IC-T90A is a handheld transceiver operating on 6 m, 2 m and 70 cm bands. It also receives over a wide range of frequencies (500 kHz to almost 1 GHz, with cellular bands blocked in the American model). The HT supports a variant of the Icom CI-V protocol for cloning and programming its memory. For background on CI-V see Ekki Plichts page. The transceiver uses the center connector of the 3.5 mm speaker jack for data input/output at 5 V TTL levels. When connected to a serial port of a computer (as opposed to another TTL device), a level converter must be used. This is what the Icom programming cable (OPC-478) does. There are many designs on the Web e.g. on the site mentioned above, and my version described here. Data transfer settings which worked for me were 9600 baud, 8/1/N.
Cloning protocol
When the unit is turned on while the SET and MR keys are pressed, it goes into a clone out mode. Now pressing the PTT switch makes it dump the memory contents through the data port. This function can be used to upload the data to a computer, or to another unit connected directly to the master one. Because of the latter, the data dump is preceded by a CI-V command that puts the clone unit(s) in the receive or clone in mode. This command is (in hex) FE FE EE EE E01 FD. In particular, the CI-V address of the T90A seems to be 0xEE. One can also request the data dump from a unit while it is operating normally, i.e. without pressing the keys while powering on. This is done by sending it the CI-V command FE FE EE EF E01 FD (which will make the dump go to device with the address 0xEF, e.g. a computer). The dump itself consists of CI-V commands FE FE EF EE E4. FD where. stands for the commands payload (described next). The last piece of the dump is FE FE EF EE E5. FD 00, in which. consists of the string Icom Inc., i.e. 6F 6D 6E 63 2E.
2.1 Command payload
All the FE FE EF EE E4. FD commands seem to describe the contents of memory locations. The format of the payload is as follows: Four bytes representing the starting location of the data being sent. The location is found by converting the four hex numbers to their ASCII equivalents, e.g. the raw hex data means ASCII 05C0, which in turn denotes location 1472 (decimal)1. In my unit the locations go from 0000 to 2D1F, i.e. a total of 11552 addresses. Two bytes denoting the size of the data, typically 32 30. This again should be interpreted as the ASCII string 20, meaning decimal 32. Assuming the starting location as above, we will be setting locations 1472 through 1503 (decimal). Data to be stored in memory locations. In this case we now expect 32 bytes represented by ASCII characters; since each byte needs two characters, we will see 64 hex numbers in the data stream. For example, the raw data will mean that the next three memory locations should be set to 07 0A D0. Checksum computed over the previous blocks, i.e. starting location, size and data. It is computed by taking each pair of bytes in the raw data, converting them to two ascii characters, interpreting the pair as a hex number and subtracting that number as an unsigned char from 0xFF (i.e. taking its 2-s complement). The result from each pair of incoming bytes is added to whats already in the checksum for this payload, modulo 256. The nal result, e.g. 0xD1, is as usual represented via its ASCII string, i.e. the raw data contains this checksum as two bytes, 44 31. The only exception seems to be the very last E4 command sent, which addresses 32 locations starting with 11552 (decimal) and contains data whose ASCII encoded bytes correspond to 16 ASCII spaces 0x20, and
1 This
ASCII encoded hex seems to be used by most Icom equipment.
then the string IcomCloneFormat3, but its checksum, 0x7E, doesnt match the one computed according to the above recipe. Since these commands are being sent during a cloning operation, it is reasonable to assume that to the receiving unit the CI-V command 0xE4 means set these locations to these values. Moreover, the length of the data can probably be anything from 0x00 to 0xFF, so one can most likely use the following command to set a single memory location, 1475 (decimal), to the value 0x4B: FE FE EF EE E31 FD (assuming I havent miscomputed the checksum, 0x41.)
Memory layout
address (decimal) 0000-7999 8000-8799 8800-9799 9800-9919 9920-9935 9936-9951 9984-9999 10000-10015 10304-10879 10880-10911 11520-11551 11552-11567 11568-11583 description 500 memories, 16 bytes each 25 scan edges, 16 bytes each bank assignments, 2 bytes each ??? (looks the same as bank assignments) VFO A settings ??? VFO B settings ??? more VFO A settings ??? more VFO B settings ??? TV channels current bank/memory settings ??? status, ags, settings 16 bytes with 0x20 (ASCII space) IcomCloneFormat3 string
Im missing a lot of information here.
3.1 Memory descriptions
Locations 0000-7999 describe the 500 memories, M0-M499, using 16 bytes for each. We will denote the contents of those bytes by B0 through B15. According to the manual the memories store: frequency, receive mode (modulation), tuning step, duplex direction (+ or -) and offset frequency, subaudible tone, tone squalch or DTCS squelch settings and frequencies, DTCS code with phase mode, memory name, and scan skip setting. Here are some of these. B3: B0-B2: B4: B5: B6: B7: B8: B9: B10-B15: increment, used in frequency computations. Value of 0x00 means 5 kHz, 0x01 means 6.25 kHz frequency represented as (B2 + 256 B1 + B0) increment indicated by B3 modulation? it appears that 0x00 means FM, 0x10 is AM, and 0x08 is WFM; 0x21 is FM in a DUPrange, and 0x41 is FM in a DUP+ range pattern noted: 0x00 for lower frequencies, 0x64 for HF, 0x78 for VHF and 0xE8 for UHF; dont know the cutoffs set to 0x00 in most cases, 0x03 for some UHF memories ??? always 0x00 ??? repeater tone frequency and tuning step; 0xD6 means 103.5 Hz, TS of 15 kHz; 0xE6 for 107.2 Hz, TS of 15 kHz; 0xE7 is 107.2 Hz, TS of 20 kHz no clear pattern; 0x20 for all AM, 0x40 for most (but not all?) UHF alpha tag, 6 ASCII characters 2
3.2 Scan edges
Locations 8000-8799 describe the 25 frequency pairs used for scan edges, in the order 0A, 0B, 1A, 1B, etc. Each takes up 16 bytes, with B0-B3 having the same meaning as above, and the other bytes looking similar. For all practical purposes these are like extra 50 memories, I guess. Even the inactive ones have frequency info in them; whether they are displayed as active or not must be determined by the bank assignments (see below).
3.3 Bank assignments
Locations 8800-9799 indicate bank assignments for the 500 memories, using two bytes each. These look like 0xFF 0xFF for unused memory (nothing programmed in), 0x1F 0xFF for a memory storing a frequency but not assigned to a bank. When a memory is assigned to a bank, then the corresponding rst byte here is set to the bank number (0x00 being A, 0x01 is B, etc.) and the second byte is set to the number within a bank, starting with 0x00. The banks are A-H (0x00-0x07?), J (0x08), L (0x09), N-R (0x0A-0x0E), T (0x0F), U (0x10), Y (0x11). But there is probably more to this; I have a bunch of memories in bank T and nearly all are coded as 0x0F but two have 0x2F for some reason. The next 60 pair of bytes, 9800-9919, appear to be similar but for the scan edge memories (rst 50 pairs) and perhaps for the call channels? The two bytes corresponding to the scan edge memories which are set are 0x1F 0xFF, the others are 0xFF 0xFF. [Added in May 2006] I pretty much abandonded this project. There is still not enough information from ICOM, and no open source software for managing this handheld. Maybe some day someone will write a piece of software using the excellent hamlib library, but for now Ill be programming the IC-T90A by hand - its simple enough.
Tags
96-85 Reference Brava Motozine ZN5 Streetfighter TT 7334 EZ-EG Scanmaker 4600 Key-menu System Nokia 1606 MD-MT866 CE-5430 GZ-MG20E PDX-4 100 Honeywell CT51 DS-317 I915GMI L1720P Photosmart 7762 PS50C6900YW Laver RU-45NZ60 Tube PAC PDP-LX5080D DVP3380 LE37A552p3R RZ-29FB51RX Voice DUO ICF-C470 KX-MB263HX Fireworks FT-2900R P-965 PL-43A82T KDL-32XBR4 WP-720NP Sunbeam 4805 TX-32PX10P ER-A250 Remorse BDV-E670W PRO 4000 WD-14311RD 1202FX KF524G Keyboard Fo-455 Laude ICD-SX68 TA-F501 Manual Aerox50-2005 Microtek Mtma 75KAV-X 114-40 Trilogy Yzea 720 Takara GP53 C1500 Adventure 125 NGC-60 Navigator ICR-350 DJM-707 25080 T Reference Automatic SGH-E251 Mods L1752T-SF Easypen M610 Boiler Plus PDP-615EX 21PT1542 Viewfinder PM45 KX-TG2208B Gravis SC-PT750 TX FM 32HF7875-10 CP3520 Zanussi W905 CDX-656X ADV350 Price DLE3733S MM-DT10 RM-VL700T DCR-SR200 MZ-E30 Qosmio G10 MDR-AS40EX IC-M502 Avtl 129 GL4TI Lexibook ST3 TXL32U2B Spellmate 700 MYX1-2 EB-GD93 Gigaset 2011 Shotgun
manuel d'instructions, Guide de l'utilisateur | Manual de instrucciones, Instrucciones de uso | Bedienungsanleitung, Bedienungsanleitung | Manual de Instruções, guia do usuário | инструкция | návod na použitie, Užívateľská príručka, návod k použití | bruksanvisningen | instrukcja, podręcznik użytkownika | kullanım kılavuzu, Kullanım | kézikönyv, használati útmutató | manuale di istruzioni, istruzioni d'uso | handleiding, gebruikershandleiding
Sitemap
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101












