Slashdot Mirror


The Journey of Radios From Hardware to Software

An anonymous reader writes "The New York Times is carrying a story all about the process of replacing radios with software. The article tells the tale of Vanu Bose, son of the man who started the Bose company, and his quest to bring software to what was previously a hardware-only enterprise. He met a lot of resistance in the 90s to his ideas, because processor technology was not up to the task. Now that technology has caught up with Vanu, his software (and other products like it) are increasingly replacing now-outdated hardware components. 'Well-established companies like Motorola and Ericsson now use elements of software-defined radio for their base stations. But Mr. Bose was the first to come to market with software that could handle multiple networks with the same equipment. Software radio appears to offer an elegant solution to what has been a vexing problem: how to have a single handset, like a cellphone, communicate across multiple networks. For instance, the G.S.M. standard, for global system for mobile communications, is used broadly in Europe, and most notably in the United States by AT&T.'"

15 of 114 comments (clear)

  1. An interesting idea by FlyByPC · · Score: 3, Interesting

    It's amazing what can sometimes be done in software. You can make a simple AM-band transmitter using a microcontroller and two resistors -- with everything done in software. MCUs are fun!

    --
    Paleotechnologist and connoisseur of pretty shiny things.
    1. Re:An interesting idea by FlyByPC · · Score: 4, Informative

      His plan has three components, do you really need a pretty picture? It sounds like it'd be a pretty simple AM transmitter, and have lots and lots of out-of-band transmission.
      Well, yeah. Square wave outputs do tend to generate alllll sorts of harmonics. But it does technically work. If I were serious about it, I'd at least add a capacitor across the output, to make some attempt at filtration.

      The "schematic" involved an 8-pin microprocessor, with two outputs each connected to a 1k resistor. The other ends of both resistors were connected to the antenna. Not very efficient, but as a proof of concept, it was a cool toy. Tuning was completely via software (tweak the timing loop to provide the correct waveform.)

      You want pictures? Happy to oblige. (The idea was to see just how simple a transmitter I could make...)

      http://www.intellectualism.org/electronics/schematic.jpg

      http://www.intellectualism.org/electronics/Closeup.jpg
      --
      Paleotechnologist and connoisseur of pretty shiny things.
    2. Re:An interesting idea by stevew · · Score: 3, Informative

      My company has IP for a FPGA based FM radio that meets all FCC harmonics requirements - and it has the same kind of external requirements. - I believe in our case it's an RC on the TTL compatible output. This isn't software defined in the traditional meaning of the term - but the FPGA is implementing the same algorithms the software is implementing. So it's soft in the way an FPGA is soft.- but the idea is identical to the MPC version mentioned above as far as the outputs are concerned.

      Bottom line - the harmonics can be taken care of by wave-shaping, i.e. you take the output load configuration into equation as you design the radio.

      --
      Have you compiled your kernel today??
  2. It's the multiplexing by Animats · · Score: 5, Informative

    It's not that a single software-defined radio is all that important. It's that you can do the transforms on the incoming waveform and then extract N different channels with one signal processing system. That's what's been making cellular base stations go for almost two decades. (All the hard work is on the receive side; transmission is easy.)

    First generation cellular base stations (i.e. AMPS) had one big analog card per channel, each heavily shielded from its neighbors. The amount of hardware required was huge, and cell sites tended not to be fully populated with channel cards, so they were easy to overload.

    Then things started to go digital, with combinations of analog and DSP components processing the signal. Both GSM and CDMA inherently assume digital processing, and in early systems, hard-wired special purpose components were used. As CPUs get faster, there's a steady trend toward using general purpose CPUs.

    It's still rare to actually process RF directly in software. Usually, there's a local oscillator and mixer to down-convert the desired band to a working IF frequency, which is then digitized and processed. So it's only necessary to digitize at maybe 10-100MHz, not up in the gigahertz range.

    For lower bands, though, a true software RF receivers are available. These just suck up everything from 0 to 30MHz and digitize it. An attached PC does all the hard work.

  3. Re:Obvious Next Step by Anonymous Coward · · Score: 4, Insightful

    It's not quite a "duh" nor is it clear without apply a lot of brain-power. In an analog radio there is no "hard-wired logic", its just the physical properties of the components engineered to work with electromagnetic waves. Software radios are only possible because digital processors are cheap/small/fast enough to approximate what the analog components are physically doing by crunching some very clever math (FFTs) in real-time.

  4. Two Words by keithmo · · Score: 4, Informative
    1. Re:Two Words by Duncan+Blackthorne · · Score: 3, Interesting

      What I find interesting (and horrifying at the same time) from that site, is that the MPAA and the FCC are actually discussing legally limiting who can purchase fast ADCs in order to protect their IP. So, what, if they got their way, I'd have to get some sort of license to purchase an integrated circuit because I might use it to build an HDTV receiver that they can't control? What a bunch of jerks!

    2. Re:Two Words by FrostedWheat · · Score: 3, Informative

      You can use a capture card with a BT878 chip as a cheap entry into SDR and GNU Radio. See Here

      The card I have didn't require any kind of modifications, and I've successfully captured signals all the way up to about 400kHz directly from the air simply using a long wire, including digital radio (the unfortunately named DRM) signals.

  5. Re:A little too much feature creep. by FooAtWFU · · Score: 3, Insightful
    Dear Mr. Barely Glanced at the Fine Summary:

    This is about radios in a variety of communication devices. Like cell phones. And cell phone towers. Especially cell phone towers. Not so much your Sony Walkman et al.

    --
    The World Wide Web is dying. Soon, we shall have only the Internet.
  6. Re:didn't someone ... by Man+On+Pink+Corner · · Score: 3, Interesting

    Something many people don't understand is that the Nyquist criterion applies to the bandwidth of the recovered signal, not to its carrier frequency. So if you want to recover a 10-kHz wide signal at 800 MHz, you don't need to sample at 1600 MHz... you just need to sample at 20 kHz, using an ADC with lots of front-end bandwidth.

    That's an oversimplification, but it may be what you were thinking of.

  7. Re:Bose blows by dreddnott · · Score: 4, Funny
    I first heard this as a charming little poem:

    Got no highs? Got no lows?
    Only midrange! Must be Bose.
    --
    I may make you feel, but I can't make you think.
  8. Not the first time I noticed this by Duncan+Blackthorne · · Score: 3, Interesting

    I think the title of this posting could be construed as a bit misleading, in that it says 'radio' but when you read the attributed article, they're talking about cellphones, not things like broadcast radio or other areas where RF transmission and reception are necessary. It may or may not be obvious to anyone, but there's no way that tuned RF circuits can be completely eliminated, at least if you're talking about over-the-air transmissions; you still need to at least provide amplification (which must be a tuned circuit) and impedance-match to your antenna (which again must be a tuned circuit).

  9. The DoD's new Software-based Radio by flydpnkrtn · · Score: 3, Interesting

    The Joint Tactical Radio System (JTRS or 'jitters') is currently being tested by the US Army... it aims to be "everything in one box," and it was "originally planned to span a frequency range of 2 megahertz to 2 gigahertz. JTRS has been expanded to frequencies above 2 GHz to satisfy space communications requirements"

    That's a direct quote from the Wikipedia article (which looks like it's pretty accurate), located here: http://en.wikipedia.org/wiki/JTRS

    I'm in the Army, and buddies of mine have played with it and can attest that "it's pretty cool" :)

  10. Software replacing hardware... by evilviper · · Score: 4, Interesting

    In theory, software (solid-state digital circuits) has huge advantages over hardware. Software offers extreme flexibility, no wear-and-tear, etc. If it worked as well as it should, in theory, there wouldn't be mechanical linkages just about anywhere, anymore. All the controls in your car would be electric, and a significant portion of your car's engine would be gone (no more cam shaft). The same would be true of most everything... If not replacing significant numbers of mechanical components, at least using software to precisely control it, and getting much better efficiency as a result. Yes, your refrigerator, microwave, etc. could all greatly benefit from software control.

    There are just two big problems that have made software control a non-starter.

    First is customization. Put a spring in the mechanics of an engine, and I can replace it with a shorter/longer/stronger/weaker spring. I can heat it up to weaken it, grind it down, etc... With software, you are given a black box, binary-only, with no documentation on how it works, and definitely no common interface to access and modify it. So every time car companies add another function to their cars' onboard computers, and take away mechanical systems, there's extreme resistance, as buyers know they're out of the loop, and if they want to adjust anything, or if something should go wrong, they can only take it to the select few company-blessed shops, which have paid the necessary bribes to get enough info to do just a few basic things with the onboard computer. And you're entirely screwed if you want more changes than that, because the company doesn't WANT you to, and without man millions of dollars on the line, you're not even a blip on their radar.

    Despite what many believe, cost is almost never a problem. For low cost products, low-end micro-controllers can be found for pennies, and even cheaper are the basic I/O elements like thermistors, power meters, transistors, relays, etc. Yet even the dirt cheap processors sold today can do many millions of calculations per second, far faster than could be needed for damn near any products.

    Second, and perhaps more important, is reliability. Computer hardware is EXTREMELY reliable. You can go buy a dirt cheap commodity CPU, RAM and MOBO, and be pretty damn sure it will run for 20 years without a SINGLE error. The only big exception to this is power supplies... a marginal one, not supplying enough power will cause a crash, but that generallyonly happens in the case of the cheapest no-name junk. What's more, go up a small step to a high quality MOBO, ECC RAM, redundant PSUs, UPS, etc., and you'll never ever see a hardware-induced glitch.

    The reliability problem comes ENTIRELY from poor software, and mostly commonly available kernels, at that. People don't want to believe that, but the facts are that computers are 100% pure math machines, and math is 100% accurate. A computer will do exactly what you tell it to do, but most people are trying to program their computer through several million lines of indirection... If you write, in hex, a simple loop with a bit of processing, a computer will run it error-free, from here until doomsday, but programing a complex system in hex is much too hard, and human programmers aren't perfect enough to do so.

    The only real possibility to ensure reliability with reasonable development time is something very much like a micro-kernel. You need a tiny bit (a few hundred KBs) of EXTREMELY-thoroughly audited code, that can very strictly manage memory, do strict input and bounds checking, carefully manage communications between independent modules of code, instantly tear-down and restart any bit of code which shows the slightest signs of an error, and also strictly ensuring real-time operation.

    I'm not endorsing any product here. The fact is nothing like this exists. That is why we aren't seeing mechanical systems having components being replaced by software as quickly as they can be redesigned. Open source operating systems

    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  11. Re:Obvious Next Step by Dun+Malg · · Score: 3, Insightful

    That is a logic, in the sense of a function that converts inputs to outputs in a regular way. Just not a boolean logic. No, that's not considered "logic" in the electronics world. "Logic" in the electronics sense means circuits that do useful work using two states (high/low) to represent true and false. These are considered digital systems, as opposed to analog systems, one of which is the classic coil-capacitor-diode AM radio receiver.
    --
    If a job's not worth doing, it's not worth doing right.