FMUSER Wirless Transmit Video And Audio More Easier !

[email protected] WhatsApp +8618078869184
Language

    Talking about Digital Signal Processor

     

    1. The development history of DSP

        The foundation of informatization is digitization. One of the core technologies of digitization is digital signal processing. The task of digital signal processing needs to be completed by DSP devices to a large extent. DSP technology has become a cutting-edge technology that people are paying more and more attention to and getting rapid development. DSP can stand for Digital Signal Processor (Digital Signal Processor) or Digital Signal Processing (Digital Signal Processing). The latter is a theoretical technology, and the former must be transformed into an actual product. The combination of the two becomes a means to solve a certain practical problem and realize a certain program, namely, the digital signal processing solution (DSPS). This article focuses on the first interpretation of DSP-digital signal processor. DSP is a dedicated processor that performs high-speed real-time processing after the analog signal is converted into a digital signal. Its processing speed is 10-50 times faster than the fastest CPU. In today's digital age, DSP has become a basic device in fields such as communications, computers, and consumer electronics. Industry insiders predict that DSP will be the fastest-growing electronic product in integrated circuits in the future, and it will become a decisive factor in the upgrading of electronic products.

        Before the advent of DSP, digital signal processing could only be done by MPU (microprocessor). But the lower processing speed of MPU cannot meet the requirements of high-speed real-time. Therefore, in the 1970s, someone proposed the theory and algorithm basis of DSP. And DSP only stays in the textbook, even the developed DSP system is composed of discrete components, and its application field is limited to the military and aviation sectors.

        With the development of large-scale integrated circuit technology, the world's first DSP chip was born in 1982. This DSP device is made of micron process NMOS technology. Although the power consumption and size are slightly larger, the calculation speed is dozens of times faster than MPU, and it is widely used in speech synthesis and codec. The advent of DSP chips marks a big step forward for DSP application systems from large-scale systems to miniaturization. With the progress and development of CMOS technology, the second generation of DSP chips based on CMOS technology came into being, and its storage capacity and computing speed were doubled, becoming the foundation of voice processing and image hardware processing technology. In the late 1980s, the third-generation DSP chip came out, and the computing speed was further improved, and its application range was gradually expanded to the fields of communications and computers.

        DSP developed the fastest in the 1990s, and the fourth and fifth generations of DSP devices appeared one after another. The current DSP belongs to the fifth generation of products. Compared with the fourth generation, it has a higher system integration level, integrating the DSP core and peripheral components on a single chip. This highly integrated DSP chip not only shows its talents in the fields of communications and computers, but also gradually penetrates into the field of people's daily consumption. The prospects are very promising.


    2.
    Features and advantages of DSP

    1. Hardware features

        (1) DSP belongs to Modified Harvard architecture, that is, it has two internal buses: data bus and program bus. The program and the data storage space are separated, each has an independent address bus and data bus, and the fetching and reading can be performed at the same time. At present, it has reached 9 billion floating-point operations per second (9000MFLOPS).

        (2) Use streamlined operations. The execution of each instruction is divided into several steps such as instruction fetching, decoding, fetching, and execution, which are respectively completed by multiple functional units on the chip. It is equivalent to the parallel execution of multiple instructions, which greatly improves the computing speed.

        (3) Independent hardware multiplier. Multiplication instructions are completed in a single cycle, optimizing a large number of repeated multiplications in algorithms such as convolution, digital filtering, FFT, correlation, and matrix operations.

        (4) Circular addressing (Circular addressing), bit-reversed (bit-reversed) and other special instructions greatly improve the addressing, sorting and calculation speed in operations such as FFT and convolution. The 1024-point FFT time is already less than 1μs.

        (5) Independent DMA bus and controller. There are one or more groups of independent DMA buses, which work in parallel with the CPU's program and data bus. The DMA speed has reached over 800Mbyte/s without affecting the CPU's work.

        (6) Multi-processor interface. It is convenient for multiple processors to work in parallel or serial to increase the processing speed.

        (7) JTAG (Joint Test Action Group) standard test interface (IEEE 1149 standard interface). It is convenient for on-chip online simulation of DSP and debugging under multi-DSP conditions.

    2. Software features

        (1) Immediate addressing: The operand is an immediate value, which can be obtained directly from the instruction. Example: MOV A, @0x16; send the constant 0x16 to register A.

        (2) Direct addressing: For example, TI’s TMS320 series chip divides the data memory into 512 pages, each with 128 words. Set a data page pointer DP (Data Pointer), use 9-bit to point to a data page, and add a 7-bit offset address in the page to form a 16-bit data address. This helps to speed up the addressing speed.

        (3) Indirect addressing: ① 8 auxiliary registers, one auxiliary register pointer designates an auxiliary register arithmetic unit for 16-bit unsigned number operation, determines a new address, and loads one of the auxiliary registers. ②The contents of the 8 auxiliary registers are quite flexible, and they can be loaded, added, or subtracted from immediate data; they can be loaded from the data memory; they can also be used for some indexed addressing. ③Because of the reverse position, the bit reverse addressing can be realized.

        (4) Unique multiplication instruction: Example: MAC X0, Y0, AX: (R0) +, X0 Y: (R4) + N4, YO This instruction commands DSP56300: Multiply the numbers in registers X0 and Y0, and add the result In Acc A, load the value of the memory address pointed to by register R0 into register X0, load the value of Y memory address pointed to by register R4 into register Y0, and add 1 to the value of R0, and add the value of register N4 to R4.

        The advantages of DSP system based on digital signal processing compared with traditional analog signal processing system:

        (1) The interface is simple and convenient. Due to the simple electrical characteristics of the digital signal, it is easy to implement on the hardware interface when different DSP systems are connected to each other. On the data stream interface, each system only needs to follow a specific standard protocol.

        (2) High precision and good stability. The digital signal processing is only affected by the dualization error and the limited word length, and the processing process does not introduce other noises, so it has a higher signal-to-noise ratio. In addition, the performance of the analog system is greatly affected by the performance of the component parameters, while the digital system is basically unchanged, so the digital system is more convenient for testing, debugging and mass production.

        (3) Convenient programming and easy implementation of complex algorithms. In the DSP system, the DSP chip provides a high-speed computing platform, and the system functions depend on software programming. When it is combined with modern signal processing theory and computational mathematics, it can realize complex digital signal processing functions.

        (4) Convenient integration. Modern DSP chips integrate the DSP core and its peripheral circuits on a single chip. This structure facilitates the design of portable and highly integrated digital products.

        In addition, modern DSP chips, as programmable very large integrated circuits (VLSI) devices, implement digital signal processing functions through downloadable software and firmware. In addition to the calculation and control functions of ordinary microprocessors, DSP chips have also made great improvements in the processor structure, instruction system and instruction flow design for high data transmission rate and real-time digital signal processing with intensive numerical calculations.


    3.
    Problems and challenges faced by DSP

        The maturing DSP still has many areas for improvement, but also faces many challenges.

        (1) How to rationally arrange the data flow so that it can be executed smoothly without conflict among the execution units of the DSP is still an important problem faced by DSP developers. Due to the complexity of the design, when mapping the algorithm to the DSP specific target hardware, high-level programming languages ​​cannot be used yet, assembly language must be used, and a very clear understanding of the parallel execution mechanism of the device. And this programming design limited to assembly language is the bottleneck to improve the efficiency of software development.

        (2) There are still problems with parallel structures. In order to achieve higher throughput, more data bits must be processed in a specific unit of time. VLIW technology represents the parallelism of the instruction level. The superscalar structure and the superpipeline structure also try to get more instructions in one instruction cycle. Data level parallelism is represented by wider data words, vectorization and data flow structures. Because the width of the data word is larger, each instruction cycle instruction can process more data, which increases the number of data bits that can be processed in each clock cycle. Task-level or transaction-level parallelism is reflected in multitasking, multithreading, and multiprocessor designs. These structures are expected to increase data processing throughput, but the increased data and instruction width and the consequent increase in data processing throughput will have to pay a certain price. When the code density and data width match the application, they can help, but when the data word width is not the same as the processor, they can cause a lot of trouble instead.

        (3) A large number of available on-chip caches are becoming more and more important to the total throughput of the system, because standard memory buses and interfaces can no longer provide support for the gigabyte data transfer rate of each MAC in the system. Whether the rest of the system can be compatible with high-speed processors is also becoming a big problem. A dual MAC processor with 2 ALU units may require 4 data words per clock cycle, or more than 4 gigabytes of data per second. word.

        (4) The challenges faced by the development of DSP are also reflected in the rapid increase in CPU speed and the continuous decline in prices. DSP manufacturers are faced with two choices, one is to accelerate the development of DSP, and the other is to withdraw from the competition. Each manufacturer must shift from diversified investment to unitary investment, and establish products with DSPS as the main development, that is, integrating all technologies and all products in DSP.

     

    4. the development trend and prospects of DSP

        DSP continues to meet people's ever-increasing requirements on its development road, and is gradually developing in the direction of personalization and low power consumption. The prospects for DSP development are very impressive.

        (1) System-level integration of DSP is the trend

        Reducing the size of DSP chips is always the direction of DSP technology development. Most of the current DSPs are based on a RISC (reduced instruction set computing) structure. The advantages of this structure are small size, low power consumption, and high performance. Various DSP manufacturers have adopted new processes to improve DSP cores, and integrate several DSP cores, MPU cores, special processing units, peripheral circuit units, and storage units on a single chip to become DSP system-level integrated circuits.

        (2) Programmable DSP is the leading product

        Programmable DSP provides manufacturers with great flexibility. Manufacturers can develop various series of products with different models on the same DSP platform to meet the needs of different users. At the same time, programmable DSP also provides a good way for users to easily upgrade.

        (3) Fixed-point DSP is the mainstream

        In theory, although floating-point DSP has a larger dynamic range than fixed-point DSP and is more suitable for DSP applications, fixed-point arithmetic DSP devices have lower cost, lower memory requirements, and lower power consumption. . Therefore, programmable DSP devices for fixed-point arithmetic are still mainstream products on the market. According to statistics, most of the DSP devices currently sold are 16-bit fixed-point programmable DSP devices, and it is expected that the proportion will gradually increase in the future.

        (4) Pursue higher computing speed

        At present, the general DSP operation speed is 100MIPS, that is, it can operate 100 million instructions per second. Due to the personalization and customization trend of electronic equipment, DSP must pursue higher and faster computing speeds in order to keep up with the pace of updating electronic equipment. The increase of DSP operation speed mainly depends on the new technology to improve the chip structure. Currently, DSP devices mostly use 0.5μm~0.35μm CMOS technology. According to the development trend of CMOS, it is completely possible that the operation speed of DSP can be increased by 100 times (to 1600GIPS).


    5. concluding remarks

        The increasing application of DSP in various fields has driven the development of DSP itself. Its application in 3C (Communications, Computers, Consumer) fields has occupied 90% of the current DSP market share, indicating that DSP has huge potential in other fields. . In the future development, it will appear in various fields with better performance.

     

     

     

     

     

     

    How far(long) the transmitter cover?

    The transmission range depends on many factors. The true distance is based on the antenna installing height , antenna gain, using environment like building and other obstructions , sensitivity of the receiver, antenna of the receiver . Installing antenna more high and using in the countryside , the distance will much more far.

    EXAMPLE 5W FM Transmitter use in the city and hometown:

    I have a USA customer use 5W fm transmitter with GP antenna in his hometown ,and he test it with a car, it cover 10km(6.21mile).

    I test the 5W fm transmitter with GP antenna in my hometown ,it cover about 2km(1.24mile).

    I test the 5W fm transmitter with GP antenna in Guangzhou city ,it cover about only 300meter(984ft).

    Below are the approximate range of different power FM Transmitters. ( The range is diameter )

    0.1W ~ 5W FM Transmitter :100M ~1KM

    5W ~15W FM Ttransmitter : 1KM ~ 3KM

    15W ~ 80W FM Transmitter : 3KM ~10KM

    80W ~500W FM Transmitter : 10KM ~30KM

    500W ~1000W FM Transmitter : 30KM ~ 50KM

    1KW ~ 2KW FM Transmitter : 50KM ~100KM

    2KW ~5KW FM Transmitter : 100KM ~150KM

    5KW ~10KW FM Transmitter : 150KM ~200KM

    How to contact us for the transmitter?

    Call me +8618078869184 OR
    Email me [email protected]
    1.How far you want to cover in diameter ?
    2.How tall of you tower ?
    3.Where are you from ?
    And we will give you more professional advice.

    About Us

    FMUSER.ORG is a system integration company focusing on RF wireless transmission / studio video audio equipment / streaming and data processing .We are providing everything from advice and consultancy through rack integration to installation, commissioning and training.
     
    We offer FM Transmitter, Analog TV Transmitter, Digital TV transmitter, VHF UHF Transmitter, Antennas, Coaxial Cable Connectors, STL, On Air Processing, Broadcast Products for the Studio, RF Signal Monitoring, RDS Encoders, Audio Processors and Remote Site Control Units, IPTV Products, Video / Audio Encoder / Decoder, designed to meet the needs of both large international broadcast networks and small private stations alike.
     
    Our solution has FM Radio Station / Analog TV Station / Digital TV Station / Audio Video Studio Equipment / Studio Transmitter Link / Transmitter Telemetry System / Hotel TV System / IPTV Live Broadcasting / Streaming Live Broadcast / Video Conference / CATV Broadcasting system.
     
    We are using advanced technology products for all the systems, because we know the high reliability and high performance are so important for the system and solution . At the same time we also have to make sure our products system with a very reasonable price.
     
    We have customers of public and commercial broadcasters, telecom operators and regulation authorities , and we also offer solution and products to many hundreds of smaller, local and community broadcasters .
     
    FMUSER.ORG has been exporting more than 15 years and have clients all over the world. With 13 years experience in this field ,we have a professional team to solve customer's all kinds of problems. We dedicated in supplying the extremely reasonable pricing of professional products & services.
    Contact email : [email protected]

    Our Factory

    We have modernization of the factory . You are welcome to visit our factory when you come to China.

    At present , there are already 1095 customers around the world visited our Guangzhou Tianhe office . If you come to China , you are welcome to visit us .

    At Fair

    This is our participation in 2012 Global Sources Hong Kong Electronics Fair . Customers from all over the world finally have a chance to get together.

    Where is Fmuser ?

    You can search this numbers " 23.127460034623816,113.33224654197693 " in google map , then you can find our fmuser office .

    FMUSER Guangzhou office is in Tianhe District which is the center of the Canton . Very near to the Canton Fair , guangzhou railway station, xiaobei road and dashatou , only need 10 minutes if take TAXI . Welcome friends around the world to visit and negotiate .

    Contact: Sky Blue
    Cellphone: +8618078869184
    WhatsApp: +8618078869184
    Wechat: +8618078869184
    E-mail: [email protected]
    QQ: 727926717
    Skype: sky198710021
    Address: No.305 Room HuiLan Building No.273 Huanpu Road Guangzhou China Zip:510620

    English: We accept all payments , such as PayPal, Credit Card, Western Union, Alipay, Money Bookers, T/T, LC, DP, DA, OA, Payoneer, If you have any question , please contact me [email protected] or WhatsApp +8618078869184

    • PayPal.  www.paypal.com

      We recommend you use Paypal to buy our items ,The Paypal is a secure way to buy on internet .

      Every of our item list page bottom on top have a paypal logo to pay.

      Credit Card.If you do not have paypal,but you have credit card,you also can click the Yellow PayPal button to pay with your credit card.

      ---------------------------------------------------------------------

      But if you have not a credit card and not have a paypal account or difficult to got a paypal accout ,You can use the following:

      Western Union.  www.westernunion.com

       

      Pay by Western Union to me :

      First name/Given name: Yingfeng
      Last name/Surname/ Family name: Zhang
      Full name: Yingfeng Zhang
      Country: China
      City: Guangzhou 

      ---------------------------------------------------------------------

      T/T .  Pay by T/T (wire transfer/ Telegraphic Transfer/ Bank Transfer)
       
      First BANK INFORMATION (COMPANY ACCOUNT):
      SWIFT BIC: BKCHHKHHXXX
      Bank name: BANK OF CHINA (HONG KONG) LIMITED, HONG KONG
      Bank Address: BANK OF CHINA TOWER, 1 GARDEN ROAD, CENTRAL, HONG KONG
      BANK CODE: 012
      Account Name : FMUSER INTERNATIONAL GROUP LIMITED
      Account NO. : 012-676-2-007855-0
      ---------------------------------------------------------------------
      Second BANK INFORMATION (COMPANY ACCOUNT):
      Beneficiary: Fmuser International Group Inc
      Account Number: 44050158090900000337
      Beneficiary's Bank: China Construction Bank Guangdong Branch
      SWIFT Code: PCBCCNBJGDX
      Address: NO.553 Tianhe Road, Guangzhou, Guangdong,Tianhe District, China
      **Note: When you transfer money to our bank account, please DO NOT write anything in the remark area, otherwise we won't be able to receive the payment due to government policy on international trade business.

    * It will be sent in 1-2 working days when payment clear.

    * We will send it to your paypal address. If you want to change address, please send your correct address and phone number to my email [email protected]

    * If the packages is below 2kg,we will be shipped via post airmail, it will take about 15-25days to your hand.

    If the package is more than 2kg,we will ship via EMS , DHL , UPS, Fedex fast express delivery,it will take about 7~15days to your hand.

    If the package more than 100kg , we will send via DHL or air freight. It will take about 3~7days to your hand.

    All the packages are form China guangzhou.

    * Package will be sent as a "gift" and declear as less as possible,buyer don't need to pay for "TAX".

    * After ship, we will send you an E-mail and give you the tracking number.

    For Warranty .
    Contact US--->>Return the item to us--->>Receive and send another replace .

    Name: Liu xiaoxia
    Address: 305Fang HuiLanGe HuangPuDaDaoXi 273Hao TianHeQu Guangzhou China.
    ZIP:510620
    Phone: +8618078869184

    Please return to this address and write your paypal address,name,problem on note:

    List all Question

    Nickname

    Email

    Questions

      Enter email  to get a surprise

      fmuser.org

      es.fmuser.org
      it.fmuser.org
      fr.fmuser.org
      de.fmuser.org
      af.fmuser.org ->Afrikaans
      sq.fmuser.org ->Albanian
      ar.fmuser.org ->Arabic
      hy.fmuser.org ->Armenian
      az.fmuser.org ->Azerbaijani
      eu.fmuser.org ->Basque
      be.fmuser.org ->Belarusian
      bg.fmuser.org ->Bulgarian
      ca.fmuser.org ->Catalan
      zh-CN.fmuser.org ->Chinese (Simplified)
      zh-TW.fmuser.org ->Chinese (Traditional)
      hr.fmuser.org ->Croatian
      cs.fmuser.org ->Czech
      da.fmuser.org ->Danish
      nl.fmuser.org ->Dutch
      et.fmuser.org ->Estonian
      tl.fmuser.org ->Filipino
      fi.fmuser.org ->Finnish
      fr.fmuser.org ->French
      gl.fmuser.org ->Galician
      ka.fmuser.org ->Georgian
      de.fmuser.org ->German
      el.fmuser.org ->Greek
      ht.fmuser.org ->Haitian Creole
      iw.fmuser.org ->Hebrew
      hi.fmuser.org ->Hindi
      hu.fmuser.org ->Hungarian
      is.fmuser.org ->Icelandic
      id.fmuser.org ->Indonesian
      ga.fmuser.org ->Irish
      it.fmuser.org ->Italian
      ja.fmuser.org ->Japanese
      ko.fmuser.org ->Korean
      lv.fmuser.org ->Latvian
      lt.fmuser.org ->Lithuanian
      mk.fmuser.org ->Macedonian
      ms.fmuser.org ->Malay
      mt.fmuser.org ->Maltese
      no.fmuser.org ->Norwegian
      fa.fmuser.org ->Persian
      pl.fmuser.org ->Polish
      pt.fmuser.org ->Portuguese
      ro.fmuser.org ->Romanian
      ru.fmuser.org ->Russian
      sr.fmuser.org ->Serbian
      sk.fmuser.org ->Slovak
      sl.fmuser.org ->Slovenian
      es.fmuser.org ->Spanish
      sw.fmuser.org ->Swahili
      sv.fmuser.org ->Swedish
      th.fmuser.org ->Thai
      tr.fmuser.org ->Turkish
      uk.fmuser.org ->Ukrainian
      ur.fmuser.org ->Urdu
      vi.fmuser.org ->Vietnamese
      cy.fmuser.org ->Welsh
      yi.fmuser.org ->Yiddish

       
  •  

    FMUSER Wirless Transmit Video And Audio More Easier !

  • Contact

    Address:
    No.305 Room HuiLan Building No.273 Huanpu Road Guangzhou China 510620

    E-mail:
    [email protected]

    Tel / WhatApps:
    +8618078869184

  • Categories

  • Newsletter

    FIRST OR FULL NAME

    E-mail

  • paypal solution  Western UnionBank OF China
    E-mail:[email protected]   WhatsApp:+8618078869184   Skype:sky198710021 Chat with me
    Copyright 2006-2020 Powered By www.fmuser.org

    Contact Us