Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

CC1100 RF Tranceiver C Code Working!

Status
Not open for further replies.

joe333

Newbie level 6
Joined
May 22, 2009
Messages
13
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,528
Well i ve seen users requesting code for cc1100 based RF transceivers.
This code is actually written in MicroC compiler for PIC 16F/18F series.
And the module was "ST-TR1100+PA" from a Taiwan company called "Summitek"
web: http://www.summitek.com.tw

SPI protocol is implemented in software so is easy to port to other pro families.

Thank you all for viewing my post. Email me for any clarifications.
And have fun!!!

Code C++ - [expand]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
// CC1100 STROBE, CONTROL AND STATUS REGSITER//////////////////////////////////
#define CC1100_IOCFG2 0x00 // GDO2 output pin configuration
#define CC1100_IOCFG1 0x01 // GDO1 output pin configuration
#define CC1100_IOCFG0 0x02 // GDO0 output pin configuration
#define CC1100_FIFOTHR 0x03 // RX FIFO and TX FIFO thresholds
#define CC1100_SYNC1 0x04 // Sync word, high byte
#define CC1100_SYNC0 0x05 // Sync word, low byte
#define CC1100_PKTLEN 0x06 // Packet length
#define CC1100_PKTCTRL1 0x07 // Packet automation control
#define CC1100_PKTCTRL0 0x08 // Packet automation control
#define CC1100_ADDR 0x09 // Device address
#define CC1100_CHANNR 0x0A // Channel number
#define CC1100_FSCTRL1 0x0B // Frequency synthesizer control
#define CC1100_FSCTRL0 0x0C // Frequency synthesizer control
#define CC1100_FREQ2 0x0D // Frequency control word, high byte
#define CC1100_FREQ1 0x0E // Frequency control word, middle byte
#define CC1100_FREQ0 0x0F // Frequency control word, low byte
#define CC1100_MDMCFG4 0x10 // Modem configuration
#define CC1100_MDMCFG3 0x11 // Modem configuration
#define CC1100_MDMCFG2 0x12 // Modem configuration
#define CC1100_MDMCFG1 0x13 // Modem configuration
#define CC1100_MDMCFG0 0x14 // Modem configuration
#define CC1100_DEVIATN 0x15 // Modem deviation setting
#define CC1100_MCSM2 0x16// Main Radio Control State Machine configuration
#define CC1100_MCSM1 0x17 // Main Radio Control State Machine configuration
#define CC1100_MCSM0 0x18 // Main Radio Control State Machine configuration
#define CC1100_FOCCFG 0x19 // Frequency Offset Compensation configuration
#define CC1100_BSCFG 0x1A // Bit Synchronization configuration
#define CC1100_AGCCTRL2 0x1B // AGC control
#define CC1100_AGCCTRL1 0x1C // AGC control
#define CC1100_AGCCTRL0 0x1D // AGC control
#define CC1100_WOREVT1 0x1E // High byte Event 0 timeout
#define CC1100_WOREVT0 0x1F // Low byte Event 0 timeout
#define CC1100_WORCTRL 0x20 // Wake On Radio control
#define CC1100_FREND1 0x21 // Front end RX configuration
#define CC1100_FREND0 0x22 // Front end TX configuration
#define CC1100_FSCAL3 0x23 // Frequency synthesizer calibration
#define CC1100_FSCAL2 0x24 // Frequency synthesizer calibration
#define CC1100_FSCAL1 0x25 // Frequency synthesizer calibration
#define CC1100_FSCAL0 0x26 // Frequency synthesizer calibration
#define CC1100_RCCTRL1 0x27 // RC oscillator configuration
#define CC1100_RCCTRL0 0x28 // RC oscillator configuration
#define CC1100_FSTEST 0x29 // Frequency synthesizer calibration control
#define CC1100_PTEST 0x2A // Production test
#define CC1100_AGCTEST 0x2B // AGC test
#define CC1100_TEST2 0x2C // Various test settings
#define CC1100_TEST1 0x2D // Various test settings
#define CC1100_TEST0 0x2E // Various test settings
// Strobe commands/////////////////////////////////////////////////////////////
#define CC1100_SRES 0x30 // Reset chip.
#define CC1100_SFSTXON 0x31 // Enable and calibrate frequency synthesizer
//(if MCSM0.FS_AUTOCAL=1).
// If in RX/TX: Go to a wait state where only the synthesizer is
// running (for quick RX / TX turnaround).
#define CC1100_SXOFF 0x32 // Turn off crystal oscillator.
#define CC1100_SCAL 0x33 // Calibrate frequency synthesizer
//and turn it off
// (enables quick start).
#define CC1100_SRX 0x34 // Enable RX. Perform calibration first
// if coming from IDLE and
// MCSM0.FS_AUTOCAL=1.
#define CC1100_STX 0x35 //In IDLE state:Enable TX. Perform calibration first if
// MCSM0.FS_AUTOCAL=1. If in RX state and CCA is enabled:
// Only go to TX if channel is clear.
#define CC1100_SIDLE 0x36//Exit RX/TX, turn off frequency synthesizer and exit
// Wake-On-Radio mode if applicable.
#define CC1100_SAFC 0x37// Perform AFC adjustment of the frequency synthesizer
#define CC1100_SWOR 0x38// Start automatic RX polling sequence (Wake-on-Radio)
#define CC1100_SPWD 0x39 // Enter power down mode when CSn goes high.
#define CC1100_SFRX 0x3A // Flush the RX FIFO buffer.
#define CC1100_SFTX 0x3B // Flush the TX FIFO buffer.
#define CC1100_SWORRST 0x3C // Reset real time clock.
#define CC1100_SNOP 0x3D//No operation.May be used to pad strobe commandsto two
// bytes for simpler software.
 
#define CC1100_PARTNUM 0x30
#define CC1100_VERSION 0x31
#define CC1100_FREQEST 0x32
#define CC1100_LQI 0x33
#define CC1100_RSSI 0x34
#define CC1100_MARCSTATE 0x35
#define CC1100_WORTIME1 0x36
#define CC1100_WORTIME0 0x37
#define CC1100_PKTSTATUS 0x38
#define CC1100_VCO_VC_DAC 0x39
#define CC1100_TXBYTES 0x3A
#define CC1100_RXBYTES 0x3B
 
#define CC1100_PATABLE 0x3E
#define CC1100_TXFIFO 0x3F
#define CC1100_RXFIFO 0x3F
#define CRC_OK 0x80
///////////////////////////////////////////////////////////
 
 
///SPI Based CC1100 Tranceiver module//////////////////////////////////////////
#define WRITE_SINGLE 0x00 //
#define WRITE_BURST 0x40 // || R/W- , B , AD5-AD0 ||
#define READ_SINGLE 0x80 //
#define READ_BURST 0xC0 //
/////////////////////////////
#define SCK PORTC.F3 //is connected to SCLK of CC1100
#define SI PORTC.F4 //is connected to SO of CC1100
#define SO PORTC.F5 //is connected to SI of CC1100
#define CS PORTC.F6 //is connected to CSn of CC1100
#define TE PORTC.F7 //is connected to TE of CC1100
///////////////////////////////////////////////////////////////////////////////
 
///////////////////////////////////////////////////////////////////////////////
unsigned char paTable[] = {0x60};//{0xC0, 0x7F, 0x7F, 0x7F, 0x7F, 0x7F, 0x7F, 0x7F };//
unsigned char txBuffer[] = {9, 1, 0x01,0x02,0x03,0x04,0x05,0x06,0x07};
//{20, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
// 14, 15, 16, 17, 18, 19};//{2, 1, 0x01};
unsigned char rxBuffer[31];
//unsigned char dpybuffer[10]={0x11,0xF9,0x23,0x61,0xC9,0x45,0x05,0xF1,0x01,0x41};
unsigned char rfstate;
////////SPI is implemented through software here
////volatile char SPI_RX_Buffer; // receives data as in SSPSR shift register
//volatile char SPI_TX_Buffer; // tx data as in SSPSR shift register
 
///////////////////////////////////////////////////////////////////////////////
 
///////////////////////////////////////////////////////////////////////////////
////PIC 16F877A///SPI FUNCTIONS////////////////joseph.john@artindynamics.com///
///////////////////////////////////////////////////////////////////////////////
 
/////////////////AD_SPI_init()/////////////////////////////////////////////////
//Initialze the SPI peripheral/////////////////////////////////////////////////
 
 
 
///////////////////////////////////////////////////////////////////////////////
unsigned char AD_SPI_write(unsigned char content)
{
unsigned char status=0x00;
unsigned char value=0x00,i;
SCK=0; //In IDLE clock should be 0
 
for(i=0;i<8;i++)
{
value=(content & 0x80);
if(value!=0x00) //checking each bits
{
//SCK=0;
SO=1;
}
else
{
//SCK=0;
SO=0;
}
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
SCK=1; //clock from L to H
asm nop;
asm nop;
asm nop;
asm nop;
content=content<<1; //shifting for next bit
status=status<<1;
if(SI==1)
{
status=status|0x01;
}
else if(SI==0)
{
status=status&0xFE;
}
asm nop;
asm nop;
asm nop;
asm nop;
SCK=0;
}
SCK=0;
return status;
}
//////////////////////////////////////////////////////////////////////////////
unsigned char AD_SPI_read(void)
{
unsigned char i=0;
unsigned char content=0x00;
SCK=0;
for(i=0;i<8;i++)
{
content=content<<1;
SCK=1;
if(SI==1)
{
content=content|0x01;
}
else if(SI=0)
{
content=content&0xFE;
}
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
asm nop;
SCK=0;
asm nop;
asm nop;
asm nop;
asm nop;
}
SCK=0;
return content;
}
///////////////////////////////////////////////////////////////////////////////
////////////////////////END of SPI Functions///////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
 
///////////////////////////////////////////////////////////////////////////////
////////////////////////CC1100 Special Routines////////////////////////////////
//unsigned char AD_SPI_read(void) //100ns btw each read/write
//unsigned char AD_SPI_write(unsigned char)
 
// unsigned char AD_CC1100_read_REG(unsigned char address)
// AD_CC1100_write_REG
// AD_CC1100_read_STATUSREG
// AD_CC1100_command_STROBE
// AD_CC1100_read_BURST
// AD_CC1100_write_BURST
// AD_CC1100_RxTxStatus
//
// AD_CC1100_PWR_RST
///////////////////////////////////////////////////////////////////////////////
unsigned char AD_CC1100_read_REG(unsigned char address)
{
unsigned char value;
address|=READ_SINGLE;
CS=1;
SCK=0; //jst to be sure
CS=0;
while(SI); //Wait for SI to become zero
AD_SPI_write(address);
Delay_us(10); //A min 100ns delay bw each access
value=AD_SPI_read();
SCK=0;
SI=1;
SO=0; //default position
CS=1; //
return value;
}
///////////////////////////////////////////////////////////////////////////////
void AD_CC1100_write_REG(unsigned char address, unsigned char value)
{
//unsigned char value;
CS=1;
SCK=0;
SCK=1;
SCK=0;
SCK=1;
SCK=0;
address|=WRITE_SINGLE;
CS=0;
while(SI);
AD_SPI_write(address);
Delay_us(10);
AD_SPI_write(value);
SCK=0;
SO=0;
CS=1;
}
///////////////////////////////////////////////////////////////////////////////
// No burst mde available for status read (readonly)///////////////////////////
unsigned char AD_CC1100_read_STATUSREG(unsigned char address)
{
unsigned char value;
address|=READ_BURST; ///STATUS reg frm 0x30-0x3D B=1-status,B=0-command strobe
CS=1;
SCK=0;
CS=0;
while(SI);
AD_SPI_write(address);
Delay_us(10);
value=AD_SPI_read();
SCK=0;
SO=0;
CS=1;
return value;
}
///////////////////////////////////////////////////////////////////////////////
// Do not use for SRES strobes...check whether SO become low......
unsigned char AD_CC1100_command_STROBE(unsigned char value) // write- only
{
unsigned char status=0;
CS=1;
SCK=0;
SO=0;
CS=0;
while(SI);
status=AD_SPI_write(value);
CS=1;
SCK=0;
SO=0;
return status;
}
///////////////////////////////////////////////////////////////////////////////
void AD_CC1100_read_BURST(unsigned char address, unsigned char *buffer,
unsigned char count)
{
unsigned int j=0;
unsigned char value;
address|=READ_BURST;
CS=1;
SCK=0;
CS=0;
while(SI);
AD_SPI_write(address);
Delay_us(10);
for(j=0;j<count;j++)
{
value=AD_SPI_read();
buffer[j]=value;
Delay_us(10);
}
CS=1;
SCK=0;
SO=0;
}
///////////////////////////////////////////////////////////////////////////////
void AD_CC1100_write_BURST(unsigned char address, unsigned char *buffer,
unsigned char count)
{
unsigned int j=0;
unsigned char value;
address|=WRITE_BURST;
CS=1;
SCK=0;
CS=0;
while(SI);
AD_SPI_write(address);
Delay_us(10);
for(j=0;j<count;j++)
{
value=buffer[j];
AD_SPI_write(value);
Delay_us(10);
}
CS=1;
SCK=0;
SO=0;
}
///////////////////////////////////////////////////////////////////////////////
void AD_CC1100_RfSendPacket(unsigned char *txBuffer, unsigned char size)
{
unsigned char test=0x00;
// unsigned char i=0Xff;
AD_CC1100_command_STROBE(CC1100_SFTX); //flush TX Fifo
//Delay_ms(1);
AD_CC1100_write_BURST(CC1100_TXFIFO, *txBuffer, size);
//Delay_ms(1);
if(((AD_CC1100_read_STATUSREG(CC1100_TXBYTES))& 0x7F)==0x03)
{
PORTA.F2=1;
}
AD_CC1100_command_STROBE(CC1100_STX); //Enable TX if in IDLE mode
 
//Asserts when sync word has been sent / received, and de-asserts at the end of the packet. In RX, the pin will de-assert
//when the optional address check fails or the RX FIFO overflows. In TX the pin will de-assert if the TX FIFO underflows.
 
 
while(((AD_CC1100_read_STATUSREG(CC1100_TXBYTES))& 0x7F)!=0x00)
{
Delay_us(5);
PORTA.F0=1;
}
/*
while((AD_CC1100_read_STATUSREG(CC1100_PKTSTATUS) & 0x01)==0x01)
{
PORTA.F3=1; //sync detected
Delay_us(5);
}
if(((AD_CC1100_command_STROBE(CC1100_SNOP)) & 0x70)==0x70)
{
PORTA.F1=1; //overflow occured;
AD_CC1100_command_STROBE(CC1100_SFTX);//clear fifo
}
if(((AD_CC1100_command_STROBE(CC1100_SNOP)) & 0x0F)==0x0F)
{
//finished FIFO empty
PORTA.F2=~PORTA.F2;
//so end tx
AD_CC1100_command_STROBE(CC1100_SIDLE);
} */
// AD_CC1100_command_STROBE(CC1100_SIDLE);//idele
 
// AD_CC1100_command_STROBE(CC1100_SIDLE);//idele
PORTA.F1=~PORTA.F1;
//Delay_ms(5);
 
//while(1);
// AD_CC1100_command_STROBE(CC1100_SFTX); //flush TX Fifo
//AD_CC1100_command_STROBE(CC1100_SIDLE);
// TMR0=0; T0IF=0; //can be used to speed up
 
/*while(((AD_CC1100_read_STATUSREG(CC1100_TXBYTES))& 0x7F)!=0x00) //wait untill txmision over
{
//PORTA.F2=~PORTA.F2;
 
//PORTA=test;
Delay_ms(100);
if((AD_CC1100_read_STATUSREG(CC1100_TXBYTES)&0x80)==0x00)
{
//PORTA.F1=~PORTA.F1;
Delay_ms(100);
//underflow so do SFTX
AD_CC1100_command_STROBE(CC1100_SFTX); //flush TX Fifo
}
 
 
} */
//{
//PORTA.F0=~PORTA.F0;//1; //lightup
// Delay_ms(100);
// if(T0IF) return ; //
 
// }
 
//PORTA.F0=1; //lightup
//Delay_ms(500);
//PORTA.F0=0; //led OFF
//return ;
}
///////////////////////////////////////////////////////////////////////////////
unsigned char AD_CC1100_RfReceivePacket(unsigned char *rxBuffer,
unsigned char length)
{
unsigned char status[2];
unsigned char packetLength;
//wait till sync received GDO set
//wait for end of packet GD0 Cleared
packetLength=AD_CC1100_read_REG(CC1100_RXFIFO); //read first byte in RXFIFO
if(packetLength <= length) //STORE IT TO LENGTH
{
length = packetLength;
// AD_CC1100_read_BURST(CC1100_RXFIFO,rxBuffer,packetLength);
//AD_CC1100_read_BURST(CC1100_RXFIFO, status, 2);//[RSSI] [CRC OK-7,LQI-6-0].
}
else
{
length = packetLength;
AD_CC1100_command_STROBE(CC1100_SIDLE); //change to IDLE
AD_CC1100_command_STROBE(CC1100_SFRX); //FLUSH FIFO
}
if(packetLength==9)
{
PORTA.F0=1;
PORTA.F2=0;
PORTA.F3=0;
}
//PORTA=packetLength;
//
//if(rxbuffer[2]==0x01)
//{
// PORTA.F0=~PORTA.F0; //success!!!!
// while(1);
//}
//
// PORTA.F1=0;
// PORTA.F2=0;
// PORTA.F3=0;
}
///////////////////////////////////////////////////////////////////////////////
 
unsigned char AD_CC1100_RxTxStatus(void)
{
// unsigned char RxTxstatus;
unsigned char value;
CS=0;
while (SI);
AD_SPI_write(CC1100_SNOP);
value=AD_SPI_read();
SCK=0;
SO=0;
CS=1;
return value;
}
///////////////////////////////////////////////////////////////////////////////
void AD_CC1100_PWR_RST(void)
{
unsigned char i;
AD_CC1100_command_STROBE(CC1100_SIDLE);
CS=1;
for(i=0;i<5;i++);
CS=0;
for(i=0;i<5;i++);
CS=1;
for(i=0;i<200;i++);
CS=0;
while(SI);
AD_CC1100_command_STROBE(CC1100_SRES);
CS=1;
SCK=0;
SO=0;
}
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////TX/RX SECTION///////////////////////////////////
void AD_CC1100_Tx(void)
{
unsigned char i;
// AD_CC1100_write_REG(0x3E,0xC0); //POWER=10DBM
PORTA.F2=0; //
PORTA.F3=0; ///
AD_CC1100_write_REG(CC1100_FREND0, 0x10);//Front End TX Config (GIVEN BY RF STUDIO)
Delay_ms(5);
for(i=0;i<4;i++)
{
AD_CC1100_RfSendPacket(txBuffer, sizeof(txBuffer));
Delay_ms(5);
}
// AD_CC1100_write_REG(0x3E,0x7f); //POWER=0DBM
AD_CC1100_write_REG(CC1100_FREND0, 0x11); //change TX config
Delay_ms(5);
AD_CC1100_RfSendPacket(txBuffer, sizeof(txBuffer));
Delay_ms(5);
//PORTC=0xFF;
}
///////////////////////////////////////////////////////////////////////////////
unsigned char AD_CC1100_Rx(void)
{
unsigned char length,i;
length = sizeof(rxBuffer);
if (AD_CC1100_RfReceivePacket(rxBuffer, length))
{
i=rxBuffer[0];
//PORTC=dpybuffer[i];
//LED2=LED_ON;
//LED1=LED_OFF;
return 1;
}
else return 0;
 
}
///////////////////////////////////////////////////////////////////////////////
void AD_CC1100_WriteRfSettings(void)
{
AD_CC1100_write_REG(CC1100_FSCTRL1, 0x0A); // Desired IF freq to employ in RX
AD_CC1100_write_REG(CC1100_FSCTRL0, 0x00); // Freq offset added to base freq
AD_CC1100_write_REG(CC1100_FREQ2, 0x10); // base freq for freq synthesizer
AD_CC1100_write_REG(CC1100_FREQ1, 0xA7); //cont freq2 reg....page68
AD_CC1100_write_REG(CC1100_FREQ0, 0x62); //do
AD_CC1100_write_REG(CC1100_MDMCFG4, 0x2D); // p69
AD_CC1100_write_REG(CC1100_MDMCFG3, 0x3B); //
AD_CC1100_write_REG(CC1100_MDMCFG2, 0x73); // modulation type, manc enc, sync wrd qualifier
AD_CC1100_write_REG(CC1100_MDMCFG1, 0x22); //FEC, PREamble, CH spacing
AD_CC1100_write_REG(CC1100_MDMCFG0, 0xF8); // Channel spacing
AD_CC1100_write_REG(CC1100_CHANNR, 0x00); // channel No
AD_CC1100_write_REG(CC1100_DEVIATN, 0x00); ///when in msk -deviation
AD_CC1100_write_REG(CC1100_FREND1, 0xB6);
AD_CC1100_write_REG(CC1100_FREND0, 0x10);
AD_CC1100_write_REG(CC1100_MCSM0, 0x18); //radio control machine state // auto calibrate
AD_CC1100_write_REG(CC1100_FOCCFG, 0x1D);
AD_CC1100_write_REG(CC1100_BSCFG, 0x1C);
AD_CC1100_write_REG(CC1100_AGCCTRL2, 0xC7);
AD_CC1100_write_REG(CC1100_AGCCTRL1, 0x00);
AD_CC1100_write_REG(CC1100_AGCCTRL0, 0xB0);
AD_CC1100_write_REG(CC1100_FSCAL3, 0xEA);
AD_CC1100_write_REG(CC1100_FSCAL2, 0x2A);
AD_CC1100_write_REG(CC1100_FSCAL1, 0x00);
AD_CC1100_write_REG(CC1100_FSCAL0, 0x1F);
AD_CC1100_write_REG(CC1100_FSTEST, 0x59);
AD_CC1100_write_REG(CC1100_TEST2, 0x88);
AD_CC1100_write_REG(CC1100_TEST1, 0x31);
AD_CC1100_write_REG(CC1100_TEST0, 0x09);
AD_CC1100_write_REG(CC1100_FIFOTHR, 0x07);
AD_CC1100_write_REG(CC1100_IOCFG2, 0x29); //WOR_EVNT0 ??? //Default 0x29 Chip ready
AD_CC1100_write_REG(CC1100_IOCFG0, 0x06); // Assert when sync wrd sent //Default 0x3F osc/192....
AD_CC1100_write_REG(CC1100_PKTCTRL1, 0x04); // 2 stst bytes appended, RSSI, LQI and CRC ok
AD_CC1100_write_REG(CC1100_PKTCTRL0, 0x05); //whitening off, crc en, var packet length mode
AD_CC1100_write_REG(CC1100_ADDR, 0x00); //ADDRESS for Packet filteration
AD_CC1100_write_REG(CC1100_PKTLEN, 0xFF);
}
//////////////////TESTED FUNCTONS//////////////////////////////////////////////
unsigned char AD_CC1100_POWERUP(void)
{
unsigned status=0xFF; // For debug to be deleated
CS=1; //default state
SCK=1;
SO=0;
CS=0;
Delay_ms(5);
CS=1;
Delay_ms(5);
CS=0;
 
CS=1;
status=AD_CC1100_command_STROBE(CC1100_SRES);
//status=status>>3; // to check if idle
//PORTA=status; // working
}
///////////////////EOF TESTED FUNCTIONS////////////////////////////////////////
 
 
 
///////////////////////////////////////////////////////////////////////////////
/////////////////////////////EOF CC1100 Routines///////////////////////////////
///////////////////////////////////////////////////////////////////////////////
void main()
{
short take,take1,take2,take3,take4, buffer;
unsigned char test;
unsigned char status=0xFF;
TRISC.F3=0;//SCK output port
TRISC.F4=1;//SI input port
TRISC.F5=0;//SDO output
TRISC.F6=0;//CS output
TRISC.F7=0;//TE output
///
PORTA=0x00;
TRISA=0x00;
ADCON1=0x07;
//
CS=1; //default state
SCK=0;
//SI=1; // do
//SO=0;
/////////////////////////
AD_CC1100_POWERUP(); //Powering UP the Module
Delay_ms(1);
AD_CC1100_WriteRfSettings();
AD_CC1100_write_BURST(CC1100_PATABLE, paTable, sizeof(paTable));
TE=1; //enable amp
while(1)
{
AD_CC1100_RfSendPacket(txBuffer, sizeof(txbuffer));
//test=AD_CC1100_read_REG(CC1100_PATABLE);
//PORTA=0xFF;
//PORTA=test>>4;
}
//while(1);
 
 
/*while(1)
{
AD_CC1100_RfSendPacket(txBuffer, sizeof(txbuffer));
Delay_ms(100);
}*/
//status=AD_CC1100_read_STATUSREG(0x31); //read version
//PORTA=status;
////////////////////////////
// while(1)
// {
//
// }
 
//TE=1;
 
//AD_CC1100_PWR_RST(); ///Perform power ON reset
//status=AD_CC1100_command_STROBE(CC1100_SNOP);
//If reset sucess then should be in idle state
/*
AD_CC1100_WriteRfSettings();
AD_CC1100_write_BURST(CC1100_PATABLE, paTable, sizeof(paTable));
PORTA=0x00;
TRISA=0x00;
ADCON1=0x07;
 
//AD_SPI_read();
//AD_CC1100_PWR_RST();
while(1)
{
// AD_SPI_read(0xA);
// PORTA.F0=~PORTA.F0;
Delay_ms(500);
rfstate=AD_CC1100_read_REG(CC1100_MARCSTATE);//Main Radio Control State Machine State
if((rfstate & 0x1F)==0x00) // if in sleep mode
{
PORTA.F2=1;
PORTA.F3=1;
///LED1=LED_OFF;
//LED2=LED_OFF;
AD_CC1100_PWR_RST(); //perform power reset
AD_CC1100_WriteRfSettings(); //load settings
}
AD_CC1100_Tx();//this data in buffer is txed txBuffer[] = {2, 1, 0x01};
 
} */
}
 
////////////////////////////////
 
/*
 
//old rf setting back up
 
void AD_CC1100_WriteRfSettings(void)
{
AD_CC1100_write_REG(CC1100_FSCTRL1, 0x0C); // Desired IF freq to employ in RX
AD_CC1100_write_REG(CC1100_FSCTRL0, 0x00); // Freq offset added to base freq
AD_CC1100_write_REG(CC1100_FREQ2, 0x10); // base freq for freq synthesizer
AD_CC1100_write_REG(CC1100_FREQ1, 0xB0); //cont freq2 reg....page68
AD_CC1100_write_REG(CC1100_FREQ0, 0x71); //do
AD_CC1100_write_REG(CC1100_MDMCFG4, 0xC6); // p69
AD_CC1100_write_REG(CC1100_MDMCFG3, 0x83); //
AD_CC1100_write_REG(CC1100_MDMCFG2, 0x02); // modulation type, manc enc, sync wrd qualifier
AD_CC1100_write_REG(CC1100_MDMCFG1, 0x22); //FEC, PREamble, CH spacing
AD_CC1100_write_REG(CC1100_MDMCFG0, 0xF8); // Channel spacing
AD_CC1100_write_REG(CC1100_CHANNR, 0x00); // channel No
AD_CC1100_write_REG(CC1100_DEVIATN, 0x30); ///when in msk -deviation
AD_CC1100_write_REG(CC1100_FREND1, 0x56);
AD_CC1100_write_REG(CC1100_FREND0, 0x10);
AD_CC1100_write_REG(CC1100_MCSM0, 0x18); //radio control machine state // auto calibrate
AD_CC1100_write_REG(CC1100_FOCCFG, 0x15);
AD_CC1100_write_REG(CC1100_BSCFG, 0x6C);
AD_CC1100_write_REG(CC1100_AGCCTRL2, 0x03);
AD_CC1100_write_REG(CC1100_AGCCTRL0, 0x91);
AD_CC1100_write_REG(CC1100_FSCAL3, 0xA9);
AD_CC1100_write_REG(CC1100_FSCAL2, 0x2A);
AD_CC1100_write_REG(CC1100_FSCAL0, 0x0D);
AD_CC1100_write_REG(CC1100_FSTEST, 0x59);
AD_CC1100_write_REG(CC1100_TEST2, 0x86);
AD_CC1100_write_REG(CC1100_TEST1, 0x3D);
AD_CC1100_write_REG(CC1100_TEST0, 0x09);
AD_CC1100_write_REG(CC1100_IOCFG2, 0x24); //WOR_EVNT0 ??? //Default 0x29 Chip ready
AD_CC1100_write_REG(CC1100_IOCFG0, 0x06); // Assert when sync wrd sent //Default 0x3F osc/192....
AD_CC1100_write_REG(CC1100_PKTCTRL1, 0x04); // 2 stst bytes appended, RSSI, LQI and CRC ok
AD_CC1100_write_REG(CC1100_PKTCTRL0, 0x05); //whitening off, crc en, var packet length mode
AD_CC1100_write_REG(CC1100_ADDR, 0x00); //ADDRESS for Packet filteration
AD_CC1100_write_REG(CC1100_PKTLEN, 0xFF);
}*/

 

/////////////////////////////
#define SCK PORTC.F3 //is connected to SCLK of CC1100
#define SI PORTC.F4 //is connected to SO of CC1100
#define SO PORTC.F5 //is connected to SI of CC1100
#define CS PORTC.F6 //is connected to CSn of CC1100
#define TE PORTC.F7 //is connected to TE of CC1100
///////////////////////////////////////////////////////////////////////////////



Hello! firstly thanks very much for your code. I'm working too on same project with another PIC (18F67J60), and i would like to know something.. Please can you explain me why do you write : "PORTC.F3"??

Is it mean that PIN_C3 (of MCU) is connected at PIN_F3 (of CC1100) ??

please explain me..

and another things about files.h . Did you have this file header in your code? like "16FXXX.h" or "18FXXX.h" in header of your code or in another files?
 
This was written using mikroeC compiler for which port can be accessed like PORTC.F0
However if you are going to use mPLAB you will have to write PORTCbits.RC0
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top