2018年11月20日火曜日

Prescaler 1/1,1/2

MAX2452 PSNにPIC12F1840 VXOを使っているが、PIC12F1840のメモリーが少ない為、表示器レスとした。しかし、試験を行っていると、周波数表示が欲しくなった。
そこで、MAX2452の周波数をsi5351aのclk0から直接拾って表示する事にした。その為、2倍となったMAX2452周波数データを1/2にするプリスケーラを作った。


MAX2452へ7.10MHzを指定する場合の周波数データ。si5351aのclk0を直接拾うと、14.20MHzが表示される。








1/1と1/2のプリスケーラ回路図である。









 
MAX2452へ7.10MHzを指定した周波数設定データの1/2を表示。小容量のPICも使い方次第で、上手いシステムが出来る。 
 

2018年11月11日日曜日

PSN SSB Generator

MAX2452を使ったPSN SSB Generatorである。これは、JA2NKD/1松浦OM公開のPSN SSB主要部分を1ボードにしたジェネレータ。ユニット化したキーパーツを使う事で 、簡素化した。マイクアンプにAGC付きMAX9814を使用。また、LOにPICクリスタルもどきのPCB版(GQP VXO)使用。サンプルは、7.100MHzである。







回路図である。マイクユニットMAX9814、AF PSN dsPIC33そしてRF PSN MAX2452でPSN SSBが発生する。マイクアンプユニットのGain・A/Rは、ジャンパーチップで条件を変える事が出来る。MAX9814及びMAX2452はAliexpressで入手可能。











スケッチ

必要なファイルは、JA2GQP's Download siteのpicフォルダからダウンロード可能。

////////////////////////////////////////////////////////////
//    si5351a PLL control(PIC12F1840) psn
//
//                                    2018/11/11
//                                    JA2GQP     
////////////////////////////////////////////////////////////
//
// Bug FIX  LSB/USB Frequency         2011.11.16
//

//---------- Header file include -------------------------//

#include <xc.h>

//----------Configuration setting ------------------------//

////////////////////////////
// config1
////////////////////////////
#pragma config FOSC     = INTOSC      // Internal clock
#pragma config WDTE     = OFF           // Watchdog timer off
#pragma config PWRTE    = ON            // Power on start
#pragma config MCLRE    = OFF           // External reset not used
#pragma config CP       = OFF              // Program memory not protected
#pragma config CPD      = OFF             // Data memory not protected
#pragma config BOREN    = ON            // Power drop monitoring
#pragma config CLKOUTEN = OFF        // Clock out pin is RA4
#pragma config IESO     = OFF             // No activation with clock switching
#pragma config FCMEN    = OFF           // Do not monitor external clock

////////////////////////////
// config2
////////////////////////////
#pragma config WRT      = OFF             // Flash memory not protected
#pragma config PLLEN    = OFF            // It does not work at 32 MHz
#pragma config STVREN   = ON            // Reset with stack overflow(underflow)
#pragma config BORV     = HI              // Voltage drop monitoring
#pragma config LVP      = OFF             // Low voltage programming not used

//---------- Define value setting ------------------------//

#define DEF_FREQ        7100000*MULTI-AD_OFFSET  // Default frequency(7.100MHz)
#define EEP_ADR         0x00                // EEPROM address
#define SCL   RA1                               // I2C Clock
#define SDA   RA2                               // I2C Data
#define AD_OFFSET       1023              // Frequency offset 
#define _XTAL_FREQ      16000000      // clock 16MHz(Use with delay)
#define MULTI           2                       // Multiplication factor

////////////////////////////
// si5351a parameter
////////////////////////////
#define CLK0_CTRL     16                    // Register definitions
#define CLK1_CTRL     17
#define CLK2_CTRL     18
#define MSNA_ADDR     26
#define MSNB_ADDR     34
#define MS0_ADDR      42
#define MS1_ADDR      50
#define MS2_ADDR      58
#define CLK0_PHOFF   165
#define CLK1_PHOFF   166
#define PLL_RESET    177
#define XTAL_LOAD_C  183
#define R_DIV_1      0b00000000             // R-division ratio definitions

#define Si5351A_ADDR  0xC0                  // address(cip address<<1)
#define XTAL_FREQ     25000000              // Crystal frequency for Hans' board

#define _6pF          0b01010010            // 6pF
#define _8pF          0b10010010            // 8pF
#define _10pF         0b11010010            // 10pF
#define XTAL_CL       _8pF                 // XTAL_CL 8pF set

#define _2mA           0x4C                 // 2mA(1dBm))
#define _4mA           0x4D                 // 4mA(5dBm))
#define _6mA           0x4E                 // 6mA(10dBm))
#define _8mA           0x4F                 // 8mA(12dBm)
#define mA            _2mA                  // output lebel 1dBm set

//---------- Memory define -------------------------------//

static unsigned long  frequency=DEF_FREQ;   // Frequency data

//------------- Initial proc. ----------------------------//

void PIC12F1840_set(){
    OSCCON     = 0b01111000 ;               // clock set(16MHz=0x78,8MHz=0x70,4MHz=0x68)
    ANSELA     = 0b00010000 ;               // Anarog = AN3,Othe digital
    TRISA      = 0b00011000;                // I/O set(0=output,1=input)
    PORTA      = 0b00000000 ;               // Output pin initial value
    ADCON1     = 0b11010000 ;               // FOSC/16,VDD=Ref
    ADCON0     = 0b00001101 ;
    __delay_us(5) ;                         // 5us(at clock 16MHz))
}

//------------- wait proc. -------------------------------//

void await(unsigned long ct){
  while(ct>0) ct--;
}

//------------- I2C start proc. --------------------------//

void I2C_start(){
    SCL = 1;                                // start condition
    await(3);
    SDA = 1;
    await(3);
    SDA = 0;
    await(3);
    SCL = 0;
    await(3);
 }

//------------- I2C stop proc. ---------------------------//

void I2C_stop(){
    await(3);
    SCL = 1;                                // stop condition
    await(3);
    SDA = 0;
    await(3);
    SDA = 1;
    await(3);
    SCL = 0;
    await(3);
 }

//------------- I2C write byte proc. ---------------------//

void wr_Byte(unsigned char x){
    unsigned int k;
    for(k=0;k<8;k++){
        if(x & 0x80) SDA = 1; else SDA = 0;
        await(3);
        SCL = 1;
        await(3);
        SCL = 0;
        await(3);
        SDA = 0;
        x <<= 1;
    }
    SCL = 1;
    await(3);
    SCL = 0;
}

//------------- si5351 command processing ----------------//

void Si5351_write(unsigned char reg_No, unsigned char x){
    I2C_start();

    wr_Byte(Si5351A_ADDR);                  // address set
    wr_Byte(reg_No);
    wr_Byte(x);

    I2C_stop();
}

//------------- si5351 Initialization --------------------//

void Si5351_init(void){
    SDA=1;
    SCL=1;

    await(200);
    Si5351_write(XTAL_LOAD_C,XTAL_CL);      // XTAL_CL set
    Si5351_write(CLK0_CTRL,0x80);           // Disable CLK0
    Si5351_write(PLL_RESET,0xA0);           // Reset PLL_A
       
    Si5351_write(CLK0_CTRL,mA);             // Enable CLK0 (MS0=Integer Mode, Source=PLL_A)
}

//------------- si5351 PLL data set --------------------------//

void setupPLL(unsigned char pll, unsigned char mult, unsigned long num, unsigned long denom){
  unsigned long P1;                         // PLL config register P1
  unsigned long P2;                         // PLL config register P2
  unsigned long P3;                         // PLL config register P3

  P1 = (unsigned long)(128 * ((float)num / (float)denom));
  P1 = (unsigned long)(128 * (unsigned long)(mult) + P1 - 512);
  P2 = (unsigned long)(128 * ((float)num / (float)denom));
  P2 = (unsigned long)(128 * num - denom * P2);
  P3 = denom;

  Si5351_write(pll + 0, (P3 & 0x0000FF00) >> 8);
  Si5351_write(pll + 1, (P3 & 0x000000FF));
  Si5351_write(pll + 2, (P1 & 0x00030000) >> 16);
  Si5351_write(pll + 3, (P1 & 0x0000FF00) >> 8);
  Si5351_write(pll + 4, (P1 & 0x000000FF));
  Si5351_write(pll + 5, ((P3 & 0x000F0000) >> 12) | ((P2 & 0x000F0000) >> 16));
  Si5351_write(pll + 6, (P2 & 0x0000FF00) >> 8);
  Si5351_write(pll + 7, (P2 & 0x000000FF));
}

//------------- Set up MultiSynth --------------------------//

void setupMultisynth(unsigned char synth, unsigned long divider, unsigned char rDiv){
  unsigned long P1;                         // Synth config register P1
  unsigned long P2;                         // Synth config register P2
  unsigned long P3;                         // Synth config register P3

  P1 = 128 * divider - 512;
  P2 = 0;                                   // P2 = 0, P3 = 1 forces an integer value for the divider
  P3 = 1;

  Si5351_write(synth + 0, (P3 & 0x0000FF00) >> 8);
  Si5351_write(synth + 1, (P3 & 0x000000FF));
  Si5351_write(synth + 2, ((P1 & 0x00030000) >> 16) | rDiv);
  Si5351_write(synth + 3, (P1 & 0x0000FF00) >> 8);
  Si5351_write(synth + 4, (P1 & 0x000000FF));
  Si5351_write(synth + 5, ((P3 & 0x000F0000) >> 12) | ((P2 & 0x000F0000) >> 16));
  Si5351_write(synth + 6, (P2 & 0x0000FF00) >> 8);
  Si5351_write(synth + 7, (P2 & 0x000000FF));
}

//------------- si5351 data set --------------------------//

void si5351aSetFrequency(unsigned long frequency){
  unsigned long pllFreq;
  unsigned long xtalFreq = XTAL_FREQ;
  unsigned long l;
  float f;
  unsigned char mult;
  unsigned long num;
  unsigned long denom;
  unsigned long divider;

  divider = 900000000 / frequency;          // Calculate the division ratio. 900,000,000 is the maximum internal
                                            // PLL frequency: 900MHz
  if (divider % 2) divider--;               // Ensure an even integer
                                            //division ratio

  pllFreq = divider * frequency;            // Calculate the pllFrequency:
                                            //the divider * desired output frequency

  mult = pllFreq / xtalFreq;                // Determine the multiplier to
                                            //get to the required pllFrequency
  l = pllFreq % xtalFreq;                   // It has three parts:
  f = l;                                    // mult is an integer that must be in the range 15..90
  f *= 1048575;                             // num and denom are the fractional parts, the numerator and denominator
  f /= xtalFreq;                            // each is 20 bits (range 0..1048575)
  num = f;                                  // the actual multiplier is mult + num / denom
  denom = 1048575;                          // For simplicity we set the denominator to the maximum 1048575

                                            // Set up PLL A with the calculated  multiplication ratio
  setupPLL(MSNA_ADDR, mult, num, denom);
                                            // Set up MultiSynth divider 0, with the calculated divider.
                                            // The final R division stage can divide by a power of two, from 1..128.
                                            // reprented by constants SI_R_DIV1 to SI_R_DIV128 (see si5351a.h header file)
                                            // If you want to output frequencies below 1MHz, you have to use the
                                            // final R division stage
  setupMultisynth(MS0_ADDR, divider, R_DIV_1);
}

//------------- ADconverter ------------------------------//

unsigned int adconv(){
    unsigned int temp;

    GO_nDONE = 1 ;                          // Anarog read start
    while(GO_nDONE) ;                       // PIC wait
    temp = ADRESH ;                         // Data high set
    temp = ( temp << 8 ) | ADRESL ;         //      low set

    return temp*2;                          // (0-1023) * 2 = 0-2046
}

//------------- main -------------------------------------//

void main(){
    int wk;

    PIC12F1840_set();                       // Cip Initialization
    Si5351_init();                          // si5351a Initialization

    while(1){
        wk = adconv();
        si5351aSetFrequency(frequency + wk); // Frequency data set
        __delay_ms(30);   
    }
}