Vertex Ce99 Programming Software

CE99(VX-230 Series) is a Shareware software in the category Miscellaneous developed by Vertex Standard Inc. It was checked for updates 63 times by the users of our client application UpdateStar during the last month. The software & documentation provided here is the sole property of Vertex Standard LMR INC. USA and has been collected from various contributors. The software has been scanned and is virus/spyware free. All programming software has been compressed with WinRAR to decrease download times. Vertex Standard CE-EA is customer programming software for the EVX-R70 and also the discontinued VXD-R70 repeaters. Some programming software may require an obsolete operating system such as M.S. DOS, Windows 3.1x, Windows 95/98, or Windows XP for example.

Up one level
Back to Home
Extending the Band Limits of
the Vertex CE49 Software

By Robert W. Meister WA1MIK

Background:

The Vertex VX4000, VX5500, and VX6000 radios use the CE49 programming package. By default, that program limits the frequency coverage to what's listed in the various manuals and spec sheets. For the low-band models, this means 29.7-37 MHz and 37-50 MHz, depending on the band split (A or B). The most common high-band limits are 148-174 MHz and the UHF limits are 450-480 MHz. The CE49 program has band split limits shown below:

Low-Band: 29.7-37 MHz; 37-50 MHz.
High-Band: 134-160 MHz; 148-174 MHz.
UHF: 400-430 MHz; 450-480 MHz; 480-512 MHz.

These radios have many nice features and are appealing to amateur radio operators except that the ham bands are specifically excluded from the operating ranges. For 6-meters we need to get the software to allow frequencies in the 50-54 MHz range. There are also hardware modifications necessary (VCO adjustments) to get the radios to perform on the ham bands. This article deals only with the software issue.

Warren K2WD wrote a very nice article that describes the VCO tuning procedure. His article can be found on the Yaesu/Vertex/Standard index page.

Analysis:

I was handed a copy of the CE49 software so I could analyze the operation and figure out what locations needed to be changed. I had neither a radio nor a programming cable, however someone else supplied me with the file he read and saved from one of his radios. Someone else had already figured out that the band limits are stored in a file with a '.C49' extension, and that person supplied a hex value to look for: 2FAF080. I could NOT find that value no matter how hard I looked. I knew I had to find the value 50,000,000 somewhere, and that it was a 32-bit integer.

I eventually determined that my hex editor and my own search programs were analyzing the file looking for data in Intel format, which is also called 'Little Endian'. In this format, the four bytes of data for the decimal value 50,000,000 are stored in the computer and in a file as 80 F0 FA 02, where the least significant byte is stored at the lowest or leftmost address. If you look carefully, you'll notice that the bytes are in the reverse order from what I expected to find at the end of the previous paragraph. This storage order, where the most significant byte comes first, is also known as 'Big Endian' and is often called the Motorola format. (Read more about this on the Wikipedia page for 'Endianness'.) As I was viewing files created by a Windows program and running on an Intel processor, I naturally assumed that the data would be in Intel format. Wrong! As soon as I flipped the bytes around and looked for 02 FA F0 80 and viewed it in Motorola format, the value 50,000,000 stood out like a sore thumb. The Windows Calculator will also display the hex value as 2FA F080 (16-bit groups with no leading zeroes), so be careful when using your hex editor. Had I searched for the full hex value, rather than the decimal value, I'd have found it right away.

Further analysis indicates that the microprocessor used on these radios is loosely based on the old 8-bit Intel 8051 chip, which oddly enough is Big Endian for multi-byte values and addresses.

Modifying the File:

Vertex Ce99 Programming Software

My hex editor is able to search and replace data in many formats, including 32-bit integers. When I told it to find 50000000 as a decimal value in Intel format, it failed, but as soon as I switched to Motorola format, it found it right away. I was able to change 50000000 to 54000000 in two places in the saved '.C49' file and that opened up the frequency limits quite nicely. I was then able to enter frequencies through the CE49 software up to 54.000000 MHz with no problems. Anything higher was reset to 54.000000 MHz.

In the '.C49' file, the lower and upper band limits are adjacent to each other. You can change either or both values for your particular radio. Verify that the expected data is present BEFORE you change it. The '.C49' file has two halves; you need to make the change to both locations and they're 4000 (hex) bytes apart. The first half covers the 'master' radio while the second half covers the 'slave' radio in a dual radio configuration. For example, I set up a dual radio with the master LOW-B and slave LOW-A. 3118/311C shows 37-50 MHz (the master) while 7108/710C shows 29.7-37 MHz (the slave).

The table below lists the hex addresses, hex and decimal values, and purpose/use from a stock 37-50 MHz (LOW-B) radio. The value pairs are stored every 16 bytes and in the same order as the 'Common...Hardware...Freq-Band' drop-down menu: LOW-A, LOW-B, VHF-A, VHF-C, UHF-A, UHF-D, UHF-F. Note that the addresses are different and unique for each band split. A '.C49' file can have multiple value pairs filled in for a given radio, although I have no idea how the radio figures out which one to use. Perhaps the firmware makes that decision.

Addr.ValueValuePurpose or Use
311802 34 93 4037000000Lower Limit LOW-B (master)
311C02 FA F0 8050000000Upper Limit LOW-B (master)
711802 34 93 4037000000Lower Limit LOW-B (slave)
711C02 FA F0 8050000000Upper Limit LOW-B (slave)

For completeness, here's the full band limit data. The starting addresses are hex values. 'M' = Master; 'S' = Slave. Frequencies are in MHz. Each value is four bytes long.

NameLowerM Addr.S Addr.UpperM Addr.S Addr.
LOW-A29.73108710837.0310C710C
LOW-B37.03118711850.0311C711C
VHF-A134.031287128160.0312C712C
VHF-C148.031387138174.0313C713C
UHF-A400.031487148430.0314C714C
UHF-D450.031587158480.0315C715C
UHF-F480.031687168512.0316C716C

To modify the '.C49' file, you need to change the lower or upper limits appropriately. For the 6-meter band, you only need to change one or two locations: the two upper limits. Here are some values that may be of use to expand the amateur bands.

DecimalHex Value
5400000003 37 F9 80
14400000008 95 44 00
4400000001A 39 DE 00

Step-by-Step Procedure:

The steps to modify the '.C49' file are listed below.

  1. Start the CE49 software.
  2. Put the radio into programming mode (see note below).
  3. Connect and read the data from the radio.
  4. Save the data from the radio into a '.C49' file.
  5. Exit the CE49 software.
  6. Hex edit that saved '.C49' file to give it the new band limits.
  7. Start the CE49 software.
  8. Open the previously modified '.C49' file.
  9. Modify the channel frequencies as needed.
  10. Put the radio into programming mode (see note below).
  11. Connect and write the data to the radio.
  12. Save the data as a new '.C49' file.
  13. Exit the CE49 software.
Cached

NOTE: To enter PC-CLONE (programming) mode, press and hold the PF Button (just below the POWER Button) while turning the transceiver on.

The band limit changes will stick with the radio and you won't have to hex-edit that radio's '.C49' file ever again. I don't know if radio-to-radio cloning will also propagate the new band limits.

Note that the various band limits are also found within the main CE49 '.EXE' file. These probably could be altered to permanently affect all radios programmed with this particular program. If you create a new '.C49' file without reading a radio first, that file will be populated with the default values obtained from the main CE49 '.EXE' file.

Acknowledgements and Credits:

This was a team effort. John W1GPO purchased two VX5500 radios, the CE49 programming software, and a programming cable. Dennis N1MAT obtained everything from John and sent me copies of the files. I made and tested the modifications to the '.C49' file and sent that info back to Dennis who then verified it with the actual radios. John and Dennis did the hardware modifications and tuned up the radios.

Software Archives - WSI

Contact Information:

The author can be contacted at: his-callsign [ at ] comcast [ dot ] net.

Back to the top of the page
Up one level
Back to Home

This page originally created on Monday 18-Dec-2017.


Article text, layout, and HTML © Copyright 2017 by Robert W. Meister WA1MIK.

This web page, this web site, the information presented in and on its pages and in these modifications and conversions is © Copyrighted 1995 and (date of last update) by Kevin Custer W3KKC and multiple originating authors. All RightsReserved, including that of paper and web publication elsewhere.


Vertex Standard Download, free vertex standard download software downloads. CE99(VX-230 Series), free download. » vertex standard ce99 software » ce99 vertex download » software vx 230; Most popular downloads. UpdateStar Premium. Buy VERTEX STANDARD CE-99 PROGRAMMING SOFTWARE: Portable Audio & Video - Amazon.com FREE DELIVERY possible on eligible purchases.

CE99 What can be CE99? Every day, users publish info to File.org about which applications they use to open up specific sorts of files. We use this information to assist you open up your data files. We perform not yet possess a description of CE99 itself, but we perform know which forms of documents our customers open up with it. The checklist of identified supported file types is more down the web page.

VX-231 Programing With Ce-99 Software | RadioReference.com Forums

Hitting a file type you need assist opening may in many cases discover several other applications that can open that particular kind of file too. Attempt a several programs and observe which one works finest for you. Currently we do not have a immediate download link accessible for CE99. Our team is continuously functioning on adding even more downloads to the web site. Dragon age inquisition qunari mods mod. Clicking on the download hyperlink will search for thé CE99 download on Bing. Discover the formal CE99 download on Bing.

What is certainly a document extension? A document extension is usually the heroes after the last department of transportation in a file title. For example, in the document name 'winmail.dat', the document extension is usually 'dat'. It helps Windows choose the right system to open the file. We assist you open your file We possess a large database of document extensions (file types) with comprehensive descriptions. We hand pick applications that we understand can open or otherwise handle each specific kind of file.

Original downloads available only All software detailed on file.org is definitely hosted and shipped straight by the producers. We do not host downloads on our own, but stage you to the newest, initial downloads.

Vertex Ce99 Programming Software Download

Free Ce99 Vertex Download

Reviews

Software Software Disclaimer The text above is usually not a recommendation to uninstaIl CE99(VX-230 Series) by Vertex Standard LMR, Inc. From your pc, we are usually not saying that CE99(VX-230 Series) by Vertex Standard LMR, Inc. Is certainly not a good application for your PC. This page simply contains detailed guidelines on how tó uninstall CE99(VX-230 Collection) in situation you choose this is certainly what you want to perform. Right here you can discover registry and drive posts that Advanced Uninstaller Professional discovered and categorized as 'left over spots' on various other customers' computers.

Vertex Ce99 Programming Software Download

Vertex Standard Ce 44 Programming Software

Mcs2000 Model Iii

Software Application Disclaimer The text above will be not a recommendation to uninstaIl CE99(VX-230 Series) by Vertex Regular LMR, Inc. From your personal computer, we are usually not saying that CE99(VX-230 Series) by Vertex Standard LMR, Inc. Is definitely not a good program for your Personal computer. This page simply includes detailed instructions on how tó uninstall CE99(VX-230 Series) in case you choose this is usually what you wish to perform. Here you can find registry and drive posts that Advanced Uninstaller Professional uncovered and classified as 'leftovers' on various other customers' computers.