Generate sine waves with 2 mbeds synchronised. Configurable amplitude and phase. Built for 50 Hz mains simulations.
Description
Small program based on the MODDMA buffered sine wave example.
This programs reads pin 22 to operate in Master (low) or Slave mode. Then configures pin 21 as output (master) or input (slave), in master mode led2 is on. Use a resistor (100 ohm) between the pin21's of master to slave.
The program then calculates a buffer of sine waves for the DMA with parameters given. And starts the DMA and DAC to generate the sine.
On the callbacks of the dma complete (there are 2) slave waits for a sync and master gives a sync, p21. Master waits a few extra clocks to make sure slave is ready.
Commands can be given over Serial port to modify the parameters on the run. Frequency can be changed for master and slave, but it is better to keep the same. Use "f xx.xx". Phase can be changed for master and slave Amplitude can be changed for master and slave.
Hookup
- Wire p22 high or low.
- Serial sr(p9,p10) from master to slave.
- Wire trigger p21 to p21.
- Output p18 (analogout)
Information
Do not forget a small RC filter on the DAC output.
Master Commands
<master/slave/frequency> <frequency/phase/amplitude> <space> <number> <line feed>
Example commands for serial:
- master frequency 50.1 hz
- mf 50.1\n
- frequency 50.1 Hz
- f 50.1\n
- master phase 3.1415 (or 1.0)
- mp 1\n
- slave phase 1.5 pi
- sp 1.5\n
Or use this GUI
Download, or Download C# Code (Visual Studio 2010)
Changes
Revision | Date | Who | Commit message |
---|---|---|---|
3:67b9a01ad7b0 | 2013-06-19 | jeroen3 | Updated; |
2:edd6401d9aa0 | 2013-05-31 | jeroen3 | Fixed sine generator bug.; Added command line over USB uart |
1:b97d61d415ff | 2013-05-30 | jeroen3 | Added frequency to parameters |
0:46bb6ad79423 | 2013-05-30 | jeroen3 | Basics; Double mbed synchronised 50 Hz generator (with dma) |