FSK Demodulator and sync index found

Hello.
I am very much confused regarding understanding the in depth function of this block. i have following questions.
1) what is the purpose of FIFO in this FSK demodulator.vi? what is the length of these FIFO?
2) if i have a complete packet and data like below then what will be the output of this FSK demodulator block?
random arbitray data (8bits)+ gaurd bits (2bits)+sync bits (16bits)+data (60bits)+random arbitrary data(8bits)
what will be extracted exactly from this provided data and how?
3) how much data is buffered/queued by this FSK demodulator out of which it try to find the peak of correlation?
4) where is the process of finding peak correlation takin place in this vi.
5) can this FSK demodulator.vi be used for receiving bursty communication? 
6) why is sync index found a decimal value? if it shows the start of sync SYMBOL then it should be some complete integer . i hope sync index found is related to extracting message bits (and is entirely a different process from max eye sub vi or symbol timing synchronization)
I would be thankfull if i get some detailed descriptive reply. thankyou so much.
i am working on FSK transceiver example present in labview 2012.

Hello Maria,
You can use the MT Generate Synchronization Parameters VI to tell the FSK Demodulator VI to look for a sequence of sync bits. You will have to embedded these sync bits in your bit stream yourself in the transmission side.
Beyond this, I don't think the demodulator VI does any "decoding" of your bit stream. It simply takes samples fetched IQ samples from the RFSA driver and converts them bits based on the FSK scheme. What you do with the demodulated bit stream is up to you.
The demodulator VI also doesn't detect bursts for you. You will either have to tell your VSA to aquire only bursts of data. Or detect the bursts in software. 
I can't reveal much detail about the demodulator algorithm itself because its proprietary. However, since you can open up the VI, you can always use LabVIEWs debugging tools to get a better understanding of what its doing.
Wan L
Applications Engineer
National Instruments
http://www.ni.com/support

Similar Messages

  • Hi i'm trying to turm my ipad 2 on and sync with my computer, but everytime it won't sync and the computer says that (the required disk cannot be found), my ipad just keeps trying and trying to sync with an apple picture and loading style picture on it,

    hello
    have an ipad 2 went to turn it on and it states it has low battery, so try to charge it and nothing happens, try to turn it on and sync it and have had various code faults put on, spoke to apple engineer helpline for over an hour and checked every sort of fault there has been! exhausted, however now when i try to sync with itunes it statesTHE REQUIRED DISK SPACE IS NOT AVAILABLE, i just have a black screen with an apple in the middle with a loadind style clock, i have tried to return it to factory settings to no avail, anyone ever seen this problem before help please

    yes have latest edition of itunes, i have two ipads connected to the itunes one is working one is not, they belong to my kids, i set them up at xmas for them and all working fine til yesterday, kids say they have done any thing, can i take it to an aplle shop< or any more ideas, it just repeating trying to sync  and coming up with the disk space cannot be found, don't want to risk connecting my other ipad up to the computer, i havent changed anything on my computer for months

  • When i try and sync my IPOD Nano it says 'some of the items in the itunes library were not copied because they could not be found'.  Unfortunately this is pretty much all my library!  Help!

    When i try and sync my IPOD Nano it says 'some of the items in the itunes library were not copied because they could not be found'.  Unfortunately this is pretty much all my library!  Help!

    This means iTunes can no longer locate the file in the location specified via the Get Info window for each individual track.  See the article for assistance.
    iTunes: Finding lost media and downloads
    B-rock

  • HT1296 I can't sync the songs from my computer to my ipod touch. I have gone through the iPod directions on this page and have not found them helpful. For example, I can't find the Autofill button. Can you help?

    I can't sync the songs from my computer to my ipod touch. I have gone through the directions on the iPond help page and have not found them helpful. For example, I can't find the autofill button. Can you help?

    I have already tried following those steps. I went back and tried to follow them again but they did not work. Some of my songs have synced, some have not. And I am still not seeing the Autofill icon on the bottom of the menu or anywhere else. I fear something has been corrupted here and I need to start afresh.

  • Why FSK demodulator output different bitstreams in case of the same inputs of different lengths?

    Hi everyone,
       Recently I was trying to do FSK demodulation with Labview and my USRP2.
       I did the following two tests, but found a strange phenomenon:
       In the first test, I use the demodulator to demodulate a waveform of 18399 samples, where the signal occupies about the first 12000 samples, and the FSK demodulator outputs a bitsream of 1116 bits.
       The input waveform is shown in the following figure.
       In the second test, I use the demodulator to just demodulate the first 12000 samples of the waveform,  and I found that the demodulator outputs a bitstream of 705 bits.
      The input waveform is shown in the following figure:
       According to my understanding, as the input of the 2nd test  is the same as the first part of the first 1st test, the output bitstream of the 2st test must be equal to the output of the 1st test. However, they looks very different. In the first test, even the sync  sequence of bits cannot be found. 
        Can any one  help me explain why?  Thanks in advance!  
       In the attachment, I post the program and my test data.
    Attachments:
    questions.zip ‏506 KB

    Hello Anthony F,
       Yes, I use the modulation toolkit.But I encapulate it into a subvi. Sorry for that I forget to attach it.
    Attachments:
    sub_demodulate_FSK_data.vi ‏21 KB

  • Difference between sy-tabix and sy-index?

    tell me about sy-tabix and sy-index?what is the difference between sy-tabix and sy-index?
    Moderator Message: Please search before posting. Read the [Forum Rules Of Engagement |https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement] for further details.
    Edited by: Suhas Saha on Jun 18, 2011 5:33 PM

    HI,
        Here is a brief description of difference between SY_TABIX and SY_INDEX and using them with several conditions.
    SY-TABIX
    Current line of an internal table. SY-TABIX is set by the statements below, but only for index tables. The field is either not set or is set to 0 for hashed tables.
    APPEND sets SY-TABIX to the index of the last line of the table, that is, it contains the overall number of entries in the table.
    COLLECT sets SY-TABIX to the index of the existing or inserted line in the table. If the table has the type HASHED TABLE, SY-TABIX is set to 0.
    LOOP AT sets SY-TABIX to the index of the current line at the beginning of each loop lass. At the end of the loop, SY-TABIX is reset to the value that it had before entering the loop. It is set to 0 if the table has the type HASHED TABLE.
    READ TABLE sets SY-TABIX to the index of the table line read. If you use a binary search, and the system does not find a line, SY-TABIX contains the total number of lines, or one more than the total number of lines. SY-INDEX is undefined if a linear search fails to return an entry.
    SEARCH <itab> FOR sets SY-TABIX to the index of the table line in which the search string is found.
    SY-INDEX
    In a DO or WHILE loop, SY-INDEX contains the number of loop passes including the current pass.
    Hope this helps.
    Thank you,
    Pavan.

  • How do I transfer my entire music collection to a new computer and sync my iphone with new mac without deleting existing music in iphone?

    Hi All,
    I will describe my current setup and the required setup below. Please help me with the steps to do this
    Current setup:
    OS: Windows 7
    Total Music collection: 80GB of mp3 , which is NOT added to itunes library (I use foobar)
    iTunes Music collection: around 500 songs, synced to my iphone (unchecked "manually manage" that meeans all these songs are in itunes library)
    Now the required setup: (Since I am planning to get a macbook pro)
    OS: Mac OS  (This means the music file path will be different)
    Total Music collection: 80GB which is to be added to itunes library
    iPhone Music: The same 500 songs as before.
    Is this possible? In Mac OS I want my entire 80GB to be added to itunes library, also keeping my existing iphone songs intact.
    Any ideas?

    Quick answer if you use iTunes' default preferences settings:  Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive.  Open iTunes and immediately hold down the option (alt) key (shift on Windows) so you get a prompt to select a library, then guide it to the 'iTunes Library.itl' file in the moved iTunes folder.
    If you put the copied iTunes folder in the default location of Macintosh HD > Users > *User Name* > Music  then you don't even need to start with the option key held down, iTunes will automatically look for it there.  (Make sure there isn't anything already in the iTunes folder there that you want to keep since you will be replacing it with the one you are moving.)
    Longer answers if for any reason you do not think all library files are inside your iTunes folder (changed preferences settings at some point):
    iTunes: How to move [or copy] your music [library] to a new computer [or another drive] - http://support.apple.com/kb/HT4527 - a somewhat bewildering and not always easily understandable set of options.
    For the record there's this reference for iTunes 11 but it really doesn't strike me as having the specifics you need. iTunes 11 for Mac: Move your library to another computer - http://support.apple.com/kb/PH12168
    2011 ilounge article: Transferring your iTunes library - http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive/  - An article with good background information (similar to the links above), particularly if you are not sure your media files are all grouped for quick answer above. Unfortunately under the single term "transferring library" it describes two very different moves; relocating just your media (not  really transferring your library and not recommended unless you really need this configuration), and relocating media+database (really your whole "library").  Make sure you understand the difference before electing to move only media.
    Windows users see tip at: https://discussions.apple.com/message/18879381
    Consider moving everything from your Windows PC to your Mac in a single move, including your iTunes library: About Windows Migration Assistant - http://support.apple.com/kb/ht4796 - Learn about how to use Windows Migration Assistant to migrate your files from a Windows PC to a Mac.
    Transferring the library as above will connect your i-device to the same library on the new computer even though it is stored on different hardware. You should not see the "erase & sync" prompt, and syncing will preserve game scores and other data on the device.
    As for the 80GB of music in foobar, add that to the iTunes library at some stage by dragging those files to the Automatically Add To  iTunes folder.

  • HT2729 i downloaded 3 songs to my pc and sync'd my ipod and the songs do not tranfer.  is this related to not having the proper itunes version vs ios?  I cannot get the songs to sync, but I can move other songs to different playlists and they sync fine...

    i downloaded 3 songs to my pc and sync'd my ipod and the songs do not tranfer.  is this related to not having the proper itunes version vs ios?  I cannot get the songs to sync, but I can move other songs to different playlists and they sync fine...any ideas what's wrong?

    Hi Dennis!
    I have a couple of steps for you to try in order to get those songs transferred to your iPod touch. First, make sure all of your software is updated with the latest versions. If the songs were downloaded from iTunes, you will also want to delete the songs from your library and then download them again from the list of past purchases on your iTunes account. An article about doing that can be found here:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    If you try a sync after those two steps and are still seeing the issue, then I would like you to try syncing the iPod by setting it to manually manage. An article outlining more information on manually managing your iPod sync can be found here:
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/ht1535
    If you are still having issues after that, I have another article that can outline some other reasons why your songs may not transfer to your iPod, and it can be found here:
    Some songs in iTunes won't copy to iPod
    http://support.apple.com/kb/TS1420
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Help!!! i updated itunes and now im trying to sync some videos from itunes snd it keeps giving me that you earase and sync you can only use one computer at a time

    okay so i updated itunes and now it wont let me sync anything it keeps giving me that "you can only be synced with one computer at a time erase and sync"  but this is the only computer ive ever used!!!  pleeeease help!!
    <Edited By Host>

    Re: That garbage is unreadable.
    If you really want help, stop messing with the fonts and post so that others can read and offer suggestions.
    Or better yet... try a search, I'm certain you'll find a solution to whatever issue you're experiencing.
    I have found that many times it is the things that make you most angry that push you to action. This was the case here. Thank you for causing me to get so angry that I found the answer myself.

  • ITunes movies no longer sync from Dell laptop or MacBook Pros (both authorized devices) to iPhone 6s or iPad Air 2s after configured at Apple store yesterday.  In the past I could see the movies in iTunes with the cover photo and sync.

    iTunes movies no longer sync from Dell laptop or MacBook Pros (both authorized devices) to iPhone 6s or iPad Air 2s after configured at Apple store yesterday.  In the past I could see the movies in iTunes with the cover photo and sync to the other devices but now there is a listing a movies with no cover photos and in fact if I try to view the movie on the MacBook Pro it cannot be found unless I download it.

    All I had to do was complain.  I synced my iPhone to the Windows machine, checked the other account at iTunes prompting (where no apps had shown up previously), reconnected the iPad, and 140 apps downloaded including the App Store.  I have no idea why.

  • BPM - Do we need receiver determination step between trans and sync send?

    Hi Gurus,
    I have a 1:1 transformation step followed by a sync send step. The transformation step is executing fine. While the sync step is executing, I am getting an error says 'No receiver determination found'.
    While I am executing this sync step in a separate, it is working fine.
    Do I need to have 'Receiver determination step' between Transformation step and Sync send step? I think so. Can somebody confirms this?
    Thanks for your kind help.
    Kalyan

    Hi,
    I think there is no need of a Receiver determination step in the BPM.
    You should have a proper receiver determination in configuration for this BPM scenario. (i.e) A receiver determination from BPM to the service configured for the synchronous interface.
    Regards,
    P.Venkat

  • Ive tried to update and sync my ipod touch and its froze, itunes wont recognise it and when it turns for a few seconds on my apps have all gone?

    i cant get my ipod to turn on - i tried to update it and it froze with an apple and loading bar on the screen. it finally asked me to plug it in to itunes which i have but then it wont recognise it and when it does it tries to restore it. itunes says it has been restored and needs to be synced but then it disappears and cant be found by itunes again. the ipod itself turns on for a few seconds but all of my apps have gone?! then all goes black and i have to start all over again. please help xxx

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Trouble opening itunes store and syncing ipod

    I downloaded and installed itunes 10.2.2 and synced my ipod and it erased everything and wont sync again or open the itunes store.  It keeps popping up with
    "itunes could not connect to the itunes store.  make sure your network connection is active and try again."  It is active and i checked the firewall and tried reinstalling and restarting multiple times.  What do i do?

    Thank you El Mono, found answer in another discussion. Should look first next time.

  • Missing songs iphone downloaded and sync to back up.

    I purchase my music from iTunes directly on the iPhone. Periodically I will sync to my HP laptop (running Vista). Recently I purchased several albums and some individual songs, as well as a few apps.
    A couple of days ago I tried to sync to my laptop (as I have done many times before). I plugged in the iPhone and it began the sync. Suddenly it stopped telling me the sync was complete.
    I looked and found that at least 2 albums were missing (two that I had just purchased) and several individual songs.
    The purpose of this most recent sync was to ensure I had a back up of the songs. Performing the sync is what wiped out the songs.
    Please understand that I am not purchasing music with the computer and syncing to the phone. I am purchasing on the phone and syncing with the computer for backup.
    After reading Apple's policy on their support pages they indicate I will have to purchase these again. This is ridiculous. It is the apple software and/or the iPhone that screwed up, not me and I don't appreciate having to purchase them again.
    Is there another way to get this music back. As I said, this music was purchased within the past two weeks, if not the past week. If I can't get my music back I will cease my iPhone subscription, I will stop purchasing music from the iPhone, and I will cease my plans to purchase an iPad. No more Apple products if they insist I can't get my music back for free.
    I'm not being extreme. Just reading the Apple web pages caused my blood pressure to raise. I hesitate going forward even if I do get my music back due to how arrogant their policy is.
    I know I'm not the only one that has had this problem, so I hope someone else can clarify what I need to do to resolve this.

    PS More seriously, you are not talking to Apple in these forums, just other users like yourself who volunteer advice. In that regard, you might want to also post in the forum devoted to the iTunes store:
    http://discussions.apple.com/forum.jspa?forumID=797
    And contact the store directly:
    http://www.apple.com/support/itunes/
    It is possible that the "no replacement" policy may be tied to the terms of the licenses under which Apple is allowed to sell music through its store, but I don't have any specific info on that.

  • When i click on iphone ine. how do i get out of this and sync normally?

    When i click on iphone in itunes it just comes up with option to restore from backup. how do i get out of this and sync normally?

    Found a setting in Google that was telling it to open all result in a new Windows which I was guessing that Firefox was overriding and open it in a new tab like settings suggested unchecked the box in Google and now the behavior is back to normal.

Maybe you are looking for

  • Printing Multiple Copies of Same Image on Multiple Pages

    I have Photoshop Elements 11 on a Windows 8 platform.  I can NOT get it to print multiple copies of the same file on multiple pages.  I need one file printed on one page multiple times.  I have tried the CTRL-ALT-SHIFT and nothing changes.  It still

  • OAS 4.0.8 and JCORBA does not work

    Hi I want to deploy a corba object on OAS 4.0.8 using JDeveloper 3.0. First i don't find that "automatic tool" that is supposed to be in JDeveloper 3.0 to deploy on OAS. Secondly if i do it by hand i get a compiler error from OAS 4.0.8 that i cannot

  • How do you save your artwork in Photoshop CC 2014 as an PNG or JPEG file when it doesn't give the option?

    How do you save your artwork in Photoshop CC 2014 as an PNG or JPEG file when it doesn't give the option? Thanks for your time and help in advance.

  • Early termination fee

    Does anyone know, if my contract ends before my billing cycle ends (i.e., my contract expires on 2/22 but my billing cycle ends 3/7) would I be charged an early termination fee if I port my number to a different carrier after 2/22 but before 3/7?

  • Reinstall apps on new mac

    Being new to apple, having purchased my iMac the other day, I foolishly did not uptick the box for having the login via the cloud, then compounded it by allowing the system to autofilll the passwords, I could not find them again and after many hours