Program loading help

I have been racking my brains out on uploading this program to my Uno. I am not sure if i have it unzipped in the correct location or what..
I am very willing to (Donate) to your PayPal or if you have a Patreon. This is very important to me.
If you are willing to help me out for a small fee please let me know. You time is worth my money for guidance.

on uploading this program

Which program would that be? What IS the problem?

Helping you try is free. Doing it for you costs money.

What do you have? Arduino IDE installed? Which Arduino board? Which connector does it have? Do you have a cable to get from the PC to the Arduino?

this is what pops up when i try to compile. i am able to upload to my Arduino Uno any of the programs from the IDE without any issues..

Arduino: 1.8.5 (Windows 10), Board: "Arduino/Genuino Uno"

In file included from C:\Users\rickh_000\Documents\Arduino\SimpleFixedFrequency\FMRXGhost_mod_1.ino:4:0:

C:\Users\rickh_000\Documents\Arduino\libraries\FMRX/FMRX.h:32:18: error: conflicting declaration 'typedef uint16_t u16'

typedef uint16_t u16;

^

In file included from C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:233:0,

from sketch\SimpleFixedFrequency.ino.cpp:1:

C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/USBAPI.h:30:24: note: previous declaration as 'typedef short unsigned int u16'

typedef unsigned short u16;

^

C:\Users\rickh_000\Documents\Arduino\SimpleFixedFrequency\FMRXGhost_mod_1.ino: In function 'void setup()':

FMRXGhost_mod_1:8: error: redefinition of 'void setup()'

void setup(void)

^

C:\Users\rickh_000\Documents\Arduino\SimpleFixedFrequency\SimpleFixedFrequency.ino:8:6: note: 'void setup()' previously defined here

void setup()

^

Multiple libraries were found for "TEA5767Radio.h"
Used: C:\Users\rickh_000\Documents\Arduino\libraries\sketch_jun09a
Not used: C:\Users\rickh_000\Documents\Arduino\libraries\ArduinoTEA5767
Not used: C:\Users\rickh_000\Documents\Arduino\libraries\ArduinoTEA5767
Not used: C:\Users\rickh_000\Documents\Arduino\libraries\ArduinoTEA5767
Not used: C:\Users\rickh_000\Documents\Arduino\libraries\ArduinoTEA5767
exit status 1
redefinition of 'void setup()'

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

The first two errors are libraries redefining an item, already defined elsewhere. Ie., poorly written library.

The last two indicate that you have two setup() functions, one in FMRXGhost_mod_1.ino and one in SimpleFixedFrequency.ino.

Question is why do you have a setup function in both *.ino files? Did you write both of these *.ino sketches?

No I downloaded the zip file from a website.

And that would be the problem with doing that...

I am confused on what you are downloading is you are unable to compile. Is the Arduino doing what you expect?

this is the code. the frmxghost_mod_1.zip and the fmrx.zip from www.ghostmodhacks.com

//  Based on the Origanal  
    
#include <FMRX.h>
#include <Wire.h>

float channel;
void setup(void)
{
  
  Serial.begin(9600);
  i2c_init(); // Setup IC2 for use pins (A4 and A5) arduino uno 
  fmrx_read_reg(fmrx_reg_r); // Start FMRX 
  fmrx_set_volume(8);// Set Default start up Volume
  fmrx_set_rssi(2); // This tells the radio what is a strong engough signal to stop on .. we use 0 -5 for better low signal responce
  fmrx_select_band(BAND_US);   //  select a band, parameter:  BAND_EU:       87-108MHz, Europe  BAND_US:       87-108MHz, USA  BAND_JP:       76-91MHz, JAPAN  BAND_JP_WIDE:  76-108MHz, JAPAN wide
  channel=fmrx_seek(SEEK_DOWN); // find a chanel to start on. 
}
/* commands are 1 increase volume 2 decrease volume 3 scan  up x to exit 4. scan down x to exit */
void loop(void)
{
  static int vol=8;
  if(Serial.available()>0){
    switch(Serial.read()){
      case '1':// Increase Volume
        if(vol < 0x0F){
          vol++;
        }
        fmrx_set_volume(vol);
        Serial.print("Volume+:");
        Serial.println(vol);
        Serial.print("\r\n");
        break;
        
      case '2':// decrease volume
        if(vol > 0){
          vol--;
        }
        fmrx_set_volume(vol);
        Serial.print("Volume-:");
        Serial.println(vol);
        Serial.print("\r\n");
        break;
        
        case '3': // Scan up Exit on 'x'
        do{        
        channel = fmrx_seek(SEEK_UP);
        Serial.print(channel);
        Serial.print("\r\n");
        delay(150);// change this amount to increase time stopped on a station 
        if(Serial.read()=='x'){break;}// Enter  'x' to exit scan up
         }
        while (1==1);
        break;

       case '4': // Scan Down Exit on 'x'
       do{       
        channel = fmrx_seek(SEEK_DOWN);
        Serial.print(channel);
        Serial.print("\r\n");
        delay(150);// change this amount to increase time stopped on a station 
        if(Serial.read()=='x'){break;}// Enter  'x' to exit scan up
        }
        while (1==1);
        break;
    }
  }
}

yes it was. you said i posted it wrong so i went and did it the right way, i hope.