Search found 5 matches

by jakesteffes
Fri Sep 16, 2016 5:09 pm
Forum: FV-1 hardware questions
Topic: Powering AVDD Separately from DVDD
Replies: 6
Views: 7289

Helpful information - thanks Frank!
by jakesteffes
Fri Sep 16, 2016 11:54 am
Forum: FV-1 hardware questions
Topic: Powering AVDD Separately from DVDD
Replies: 6
Views: 7289

Powering AVDD Separately from DVDD

Hi, In the interest of reducing noise, is it of any benefit to use a separate regulator for AVDD (isolating it from DVDD's regulator)? If so, should REFP be referenced to the same source as AVDD, or should it be referenced to DVDD? Additionally, is there a specific 3V3 regulator that should be used?...
by jakesteffes
Mon Jun 09, 2014 10:50 am
Forum: Algorithm development
Topic: Highpass filter with variable cutoff frequency
Replies: 3
Views: 6437

Thanks slacker,

I think you're write - I ended up coding a single pole HP filter from the ground up, and it seems to be doing the trick. Thanks for the help!
by jakesteffes
Tue Jun 03, 2014 12:31 pm
Forum: Algorithm development
Topic: Highpass filter with variable cutoff frequency
Replies: 3
Views: 6437

Highpass filter with variable cutoff frequency

Hey folks, I'm trying to implement a high pass filter, where the cutoff frequency is controlled via a scaled pot input. This is what I'm trying, but it's giving me a low pass filter instead. ( ? ) equ hp0 reg5 ;register for high-pass filter equ khp reg14 ;register for cutoff frequency ;load and scal...
by jakesteffes
Thu May 16, 2013 6:47 am
Forum: Algorithm development
Topic: addr_ptr with cho rda
Replies: 9
Views: 10803

addr_ptr with cho rda

Hi, I'm trying to use the cho rda command to read from a point in memory, but I'd like to use a pot to control which point from memory the sin/cos oscillates about. How should I implement this? This is the general idea of what I'm trying to do: ldax pot0 wrax addr_ptr, 0 cho rda, sin0, %0, addr_ptr*...