Search found 4 matches

by JAE
Tue Apr 18, 2017 4:53 am
Forum: MicroPython pyboard
Topic: Interfacing a DDS chip
Replies: 8
Views: 5676

Re: Interfacing a DDS chip

I having a problem getting this going. I am particular concerned about the code that I sent you. DO you see anything just glaringly wrong. I must confess i am principally a hardware person. I am certainly not a code writer. Any examples you could send would help a great deal. Particularly the code t...
by JAE
Wed Mar 08, 2017 5:48 am
Forum: MicroPython pyboard
Topic: Interfacing a DDS chip
Replies: 8
Views: 5676

Re: Interfacing a DDS chip

Here is my initial code for the serial registrar. def shift16(): for i in range(16) #loop for 16 data bits value = data & 0x8000 #look at left-most bit SetPin (SDAT, Value) #puts its value on data line data <<=1 #shift data bit to left data &=0xFFFF #limit data to 16 bits toggle sclk() #clock in the...
by JAE
Tue Mar 07, 2017 2:49 am
Forum: MicroPython pyboard
Topic: Interfacing a DDS chip
Replies: 8
Views: 5676

Re: Interfacing a DDS chip

I have reviewed the specification. I am having a problem with shifting data into the control registrar. Any help would be appreciated..
by JAE
Mon Mar 06, 2017 5:39 am
Forum: MicroPython pyboard
Topic: Interfacing a DDS chip
Replies: 8
Views: 5676

Interfacing a DDS chip

I would like to post a topic of writing the interface code for several DDS chips (Analog Devices). At this point I am having problems using the AD9834 would appreciate any help on this.

Thanks

JAE