Page 1 of 1

DAC on 33fj64GP802

Posted: Thu Nov 20, 2008 1:48 pm
by Lucien
Hello,

Is there any block "DAC" (digital analog converter) for the 33fj64GP802 in the simulink dspic library ?

Lucien

Re: DAC on 33fj64GP802

Posted: Fri Nov 28, 2008 1:43 am
by LubinKerhuel
Hi Lucien,

DAC peripheral is not yet available.
Considere using the C function call to build your own function.

Lubin

Re: DAC on 33fj64GP802

Posted: Mon Mar 09, 2009 8:47 am
by crh
Hello Lubin,

I wonder if you are intend to build a dac peripheral for the 33fj64(128)GP802.

Casparus

Re: DAC on 33fj64GP802

Posted: Wed Mar 11, 2009 10:14 am
by LubinKerhuel
Hi Casparus,

This is not planned yet. However, if you want to give it a try and publish results, I can provide you with a blockset with C function call avaialble.

Lubin

Re: DAC on 33fj64GP802

Posted: Wed Mar 11, 2009 11:23 am
by crh
Hello Lubin,

That should be very agreeable.
Of course, I shall publish the trials and results.

Casparus

Re: DAC on 33fj64GP802

Posted: Mon Mar 16, 2009 1:52 pm
by Lucien
Hi,

I'm very always interesting for a dac peripheral for the 33fj64(128)GP802.

Lucien

Re: DAC on 33fj64GP802

Posted: Tue Mar 17, 2009 1:36 am
by LubinKerhuel
Hi Lucien, I can propose the same solution than crh (No time to have a look by myself by right-now)
<em>LubinKerhuel</em> wrote:if you want to give it a try and publish results, I can provide you with a blockset with C function call avaialble.
Let me know

Lubin

Re: DAC on 33fj64GP802

Posted: Wed Mar 18, 2009 8:57 pm
by Lucien
Hi Lubin,

Yes I'm interesting for a C call blockset. As soon as the DAC peripherical is finished, of course I will publish the results.

Lucien

Re: DAC on 33fj64GP802

Posted: Wed Jul 29, 2009 1:12 pm
by Lucien
Hi,

My C30 code does working now for the DAc peripherical on dspic33fj64gp802.
But now I must integrate it in Matlab Simulink !

Here is my complete C30 code:

Code: Select all

#include "p33FJ64GP802.h"
#include "dsp.h"
 

long i,j,k;
long mydataright,mydataleft;

int const sinus[60]={10,500,500,150,10,500,10,10,150,500,
					500,10,350,500,10,10,10,350,500,500,
					10,10,10,10,150,150,150,150,150,150,
					350,350,350,350,500,500,500,500,500,500,
					500,150,350,10,10,350,150,500,10,150,
					150,350,10,500,500,10,150,350,10,10};

int const cosinus[60]={150,10,350,500,150,10,10,350,500,500,
					10,150,10,500,10,350,10,500,10,150,
					10,150,350,500,10,150,350,500,500,150,
					500,350,150,10,10,150,350,500,10,10,
					10,10,10,10,150,150,150,150,10,500,
					500,500,500,500,350,350,350,10,150};

void __attribute__((interrupt,no_auto_psv))_DAC1RInterrupt(void);

void __attribute__((interrupt,no_auto_psv))_DAC1LInterrupt(void);

void initDAC();


void __attribute__((interrupt,no_auto_psv)) _DAC1RInterrupt(void)
{
	IFS4bits.DAC1RIF = 0;  /* Clear Right Channel Interrupt Flag */
	DAC1RDAT = mydataright; /* User Code to Write to FIFO Goes Here */
}

void __attribute__((interrupt, no_auto_psv)) _DAC1LInterrupt(void)
{
	IFS4bits.DAC1LIF = 0;  /* Clear Right Channel Interrupt Flag */
	DAC1LDAT = mydataleft; /* User Code to Write to FIFO Goes Here */
}


void initDAC()
{
ACLKCONbits.SELACLK=0;
ACLKCONbits.AOSCMD=0;
ACLKCONbits.ASRCSEL=0;
ACLKCONbits.APSTSCLR=7; //divide clock by 8

DAC1STATbits.ROEN = 1; /* Right Channel DAC Output Enabled */ 
DAC1STATbits.LOEN = 1; /* Right Channel DAC Output Enabled */

DAC1STATbits.RITYPE = 0; /* Right Channel Interrupt if FIFO is not Full */ 
DAC1STATbits.LITYPE = 0; /* Right Channel Interrupt if FIFO is not Full */ 

DAC1CONbits.AMPON = 0; /* Amplifier Disabled During Sleep and Idle Modes */
DAC1CONbits.DACFDIV = 5; /* Divide Clock by 100 (Assumes Clock is 25.6MHz) */
							//PLLCLK=80MHZ ; ACLK=10MHz ; DACCLK=100kHz

DAC1CONbits.FORM = 0; /* Data Format is unsigned integer */
DAC1DFLT = 0x8000; /* Default value set to Midpoint when FORM = 0 */

IFS4bits.DAC1RIF = 0; /* Clear Right Channel Interrupt Flag */
IFS4bits.DAC1LIF = 0; /* Clear Right Channel Interrupt Flag */
IEC4bits.DAC1RIE = 1; /* Right Channel Interrupt Enabled */
IEC4bits.DAC1LIE = 1; /* Right Channel Interrupt Enabled */

DAC1CONbits.DACEN = 1; /* DAC1 Module Enabled */

}


long writeDACdataR(void)
{
 	mydataright=128*sinus[i];
	mydataleft=128*cosinus[i];
 
}

// Internal FRC Oscillator
_FOSCSEL(FNOSC_FRC);							// FRC Oscillator
_FOSC(FCKSM_CSECMD & OSCIOFNC_ON  & POSCMD_NONE);

//_FOSC(FCKSM_CSECMD); 

_FWDT(FWDTEN_OFF);              				// Watchdog Timer Enabled/disabled by user software
												// (LPRC can be disabled by clearing SWDTEN bit in RCON register


int main(void)
{
/*  Configure Oscillator to operate the device at 40Mhz
    Fosc= Fin*M/(N1*N2), Fcy=Fosc/2
    Fosc= 7.37*M*43/(2*2)=80Mhz for 7.37M internal FRC */
   PLLFBD=42;                    /* M=43 */
   CLKDIVbits.PLLPOST=0;        /* N1=2 */
   CLKDIVbits.PLLPRE=0;        /* N2=2 */
   OSCTUN=23;                    /* Tune FRC oscillator, if FRC is used */

/* Disable Watch Dog Timer */
   RCONbits.SWDTEN=0;

/* Clock switch to incorporate PLL*/
   __builtin_write_OSCCONH(0x01);        // Initiate Clock Switch to FRC
                                       // Oscillator with PLL (NOSC=0b001)
   __builtin_write_OSCCONL(0x01);        // Start clock switching
   while (OSCCONbits.COSC != 0b001);    // Wait for Clock switch to occur

/* Wait for PLL to lock */
while(OSCCONbits.LOCK!=1);

//OSCCONbits.LPOSCEN=0;
CLKDIVbits.DOZE=0b000;
CLKDIVbits.FRCDIV=0b000;
// Initiate Clock Switch to FRC oscillator with PLL (NOSC=0b001)
// Wait for Clock switch to occur
while (OSCCONbits.COSC != 0b001);




initDAC();

i=1;
k=0;
for(;;)
	{

	while (j<400)	
		{
		j=j+1;
		}
	j=0;
	i=i+1;
	writeDACdataR();

	if (i>60)
		{
			i=0;
		}

	          
	}
}

Re: DAC on 33fj64GP802

Posted: Wed Jul 29, 2009 2:04 pm
by LubinKerhuel
Hi Lucien, Do you have a blockst version with the C call function unrestricted ?
If not, send me an email with the matlab version you are using, I'll provide you with that.

Lubin

Re: DAC on 33fj64GP802

Posted: Sat Mar 05, 2011 7:09 am
by jannypan
I'm very always interesting for a dac peripheral for the 33fj64(128)GP802.

Re: DAC on 33fj64GP802

Posted: Thu May 19, 2011 12:45 am
by kaab
Hi Lucien, did you figure out how the block of DAC for 33fj128GP802? I am working on a project and that will be very helpful to me. Thanks

Re: DAC on 33fj64GP802

Posted: Fri May 27, 2011 9:11 am
by yannick
can you show me what is inside your header dsp.h ?

How do you define your dsPIC ?

Thanks

Re: DAC on 33fj64GP802

Posted: Wed Nov 30, 2011 2:46 am
by yingxuy
I am interested in the C library calls the module. As long as the DAC peripherical is finished, of course, I will publish the results. ...

Re: DAC on 33fj64GP802

Posted: Thu Oct 03, 2013 8:22 am
by Casper
It is learned from school physics, that an analog-to-digital converter is a device that converts a continuous physical quantity (usually voltage) to a digital number that represents the quantity's amplitude. It needs operating range as 40 MIPS and a high performance DSC CPU.


Thanks
http://www.snoringaidsnow.org

Re: DAC on 33fj64GP802

Posted: Tue Jan 14, 2014 4:13 am
by chiclothe
This is not planned yet. However