NCO Calculator


Results 1 to 25 of 25

Thread: NCO Calculator

Threaded View

  1. #1
    Join Date
    Apr 2014
    Location
    OK
    Posts
    557

    Default NCO Calculator

    NCO_Calc.zip

    I'm building a project that requires calculating numerous frequencies with the Numerically Controlled Oscillator (NCO) function in Fixed Duty Cycle Mode. Realizing that it would take me way too much time punching numbers into a calculator, I developed a simple app that does all the math work for me. I'm relatively new to the whole PC programming thing (Visual Studio 2015), but it works. Unzip the attached file, double click the .exe, and viola. If you right-click the .exe and select "Create shortcut", then drag the shortcut to your desktop (or selected folder), it will open from there. You must open/install it first, though.

    How it works;
    - Select your Fosc, either by typing it in, or using the arrows up/down. It increments in 4 MHz chunks, so non-realistic Fosc settings are possible.
    - Enter the desired frequency
    - Click the "Calculate" button
    - It displays the decimal NCO1INCx value
    - It displays the hex NCO1INCx value
    - It displays the frequency when the value is rounded down
    - It displays the frequency when the value is rounded up
    - The Clear button resets for the next entry.

    It also tracks if the frequency you enter is too large for the 20-Bit NCO1INC register and gives you a pop-up warning. If you are targeting a relatively low frequency like 60 Hz, the calculated NCO value (@ 4 MHz) is 31.45725, the HEX value is 1F, the frequency generated by using the rounded up 32 (hex 20) is 61.0352 Hz, the frequency generated by using the (rounded down) 31 (hex 1F) is 59.1279 Hz. With this information:
    - NCO1INCL = $1F
    - NCO1INCH = $00
    - NCO1INCU = $00

    If you wanted a frequency of 11,780,000 and entered that in the "Enter Frequency" box, it would give you a pop-up that reads, "Frequency Too High for Fosc, Press Clear Button and Try Again". However, if you change Fosc to 32 (MHz), you get:
    - NCO Decimal = 772013.34375
    - NCO Hex = BC7AD
    - Result Rounded Up = 11780010.0136
    - Result Rounded Down = 11779994.7548

    With that in mind, you would set your registers:
    - NCO1INCL = $AD
    - NCO1INCH = $C7
    - NCO1INCU = $0B

    Have fun.
    Last edited by mpgmike; - 20th November 2017 at 00:28.

Similar Threads

  1. help with calculator
    By minssss in forum General
    Replies: 3
    Last Post: - 10th November 2009, 01:12
  2. Calculator LCD
    By menze in forum General
    Replies: 0
    Last Post: - 26th June 2006, 22:31
  3. help with my calculator project
    By loayaouad in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 17th May 2005, 08:42
  4. Calculatorīs LCD
    By srspinho in forum mel PIC BASIC Pro
    Replies: 7
    Last Post: - 4th May 2005, 11:27
  5. Calculator
    By neiron21 in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 1st February 2005, 01:53

Members who have read this thread : 2

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts