add pwm1 (not working)

This commit is contained in:
Pavol Rusnak 2011-04-22 22:40:46 +02:00
parent e9713ca9b7
commit 888b659330
4 changed files with 44 additions and 43 deletions

View file

@ -2,6 +2,7 @@
#include "LPC13xx.h" #include "LPC13xx.h"
#include "ssp.h" #include "ssp.h"
#include "adc.h" #include "adc.h"
#include "edubrm.h"
void GetInReport (uint8_t src[], uint32_t length) void GetInReport (uint8_t src[], uint32_t length)
{ {
@ -28,28 +29,30 @@ void SetOutReport (uint8_t dst[], uint32_t length)
case 'p': case 'p':
which = dst[1]; which = dst[1];
duty = dst[2] + (dst[3]<<8); duty = dst[2] + (dst[3]<<8);
EnablePWM2(65535, duty); if (which == 1) {
// PWM_1 is PIN_9 EnablePWM1(65535, duty);
// PWM_2 is PIN_17 } else {
EnablePWM2(65535, duty);
}
break; break;
case 'd': case 'd':
// wavetype = dst[1]; wavetype = dst[1];
// TODO: set DDS to (wavetype) using SPI (set PIN_10 to 0, send SPI commands, set PIN_10 to 1) // TODO: set DDS to (wavetype) using SPI (set PIN_10 to 0, send SPI commands, set PIN_10 to 1)
break; break;
case 'D': case 'D':
// freq = dst[1] + (dst[2]<<8) + (dst[3]<<16) + (dst[4]<<24); freq = dst[1] + (dst[2]<<8) + (dst[3]<<16) + (dst[4]<<24);
// TODO: set DDS to (freq) Hz using SPI (set PIN_10 to 0, send SPI commands, set PIN_10 to 1) // TODO: set DDS to (freq) Hz using SPI (set PIN_10 to 0, send SPI commands, set PIN_10 to 1)
break; break;
case 'm': case 'm':
// which = dst[1]; which = dst[1];
// chan = dst[2]; chan = dst[2];
// gain = dst[3]; gain = dst[3];
// TODO: set opamp (which) on channel (chan) with gain (gain) // TODO: set opamp (which) on channel (chan) with gain (gain)
// for opamp1: set PIN_48 to 0, send SPI commands, set PIN_48 to 1 // for opamp1: set PIN_48 to 0, send SPI commands, set PIN_48 to 1
// for opamp2: set PIN_43 to 0, send SPI commands, set PIN_43 to 1 // for opamp2: set PIN_43 to 0, send SPI commands, set PIN_43 to 1
break; break;
case 's': case 's':
// states = dst[1]; states = dst[1];
// TODO: set switches to states // TODO: set switches to states
// switch1: PIN_12 // switch1: PIN_12
// switch2: PIN_24 // switch2: PIN_24
@ -59,15 +62,15 @@ void SetOutReport (uint8_t dst[], uint32_t length)
// switch6: PIN_37 // switch6: PIN_37
break; break;
case 'P': case 'P':
// states = dst[1]; states = dst[1];
// TODO: set pins to states (1 is INPUT, 0 is OUTPUT) // TODO: set pins to states (1 is INPUT, 0 is OUTPUT)
// pin1 is PIN_1 // pin1 is PIN_1
// pin2 is PIN_2 // pin2 is PIN_2
// pin3 is PIN_11 // pin3 is PIN_11
break; break;
case 'o': case 'o':
// which = dst[1] >> 1; which = dst[1] >> 1;
// state = dst[1] & 0x01; state = dst[1] & 0x01;
// TODO: set output pins (which) to state (state) // TODO: set output pins (which) to state (state)
// pin1 is PIN_1 // pin1 is PIN_1
// pin2 is PIN_2 // pin2 is PIN_2
@ -115,8 +118,28 @@ void TIMER32_0_IRQHandler(void) {
} }
void EnablePWM1() { void EnablePWM1(uint32_t period, uint32_t duty) {
// FAIL
if (!duty) {
LPC_SYSCON->SYSAHBCLKCTRL &= ~(1<<9); // disable
return;
}
LPC_SYSCON->SYSAHBCLKCTRL |= 1<<9; // Enables clock for 32-bit counter/timer 0.
LPC_IOCON->PIO1_6 &= ~0x07;
LPC_IOCON->PIO1_6 |= 0x01; // Selects function CT32B0_MAT0
LPC_TMR32B0->MR3 = period;
LPC_TMR32B0->MR0 = duty;
LPC_TMR32B0->MCR = 1<<10; // Reset on MR3: the TC will be reset if MR3 matches it.
LPC_TMR32B0->EMR = 3<<4; // Toggle the corresponding External Match bit/output.
LPC_TMR32B0->PWMC = 1<<0 | 1<<3; // enable PWM
LPC_TMR32B0->TCR = 1;
} }
void EnablePWM2(uint16_t period, uint16_t duty) { void EnablePWM2(uint16_t period, uint16_t duty) {
@ -140,29 +163,5 @@ void EnablePWM2(uint16_t period, uint16_t duty) {
LPC_TMR16B1->PWMC = 1<<0 | 1<<3; // enable PWM LPC_TMR16B1->PWMC = 1<<0 | 1<<3; // enable PWM
//LPC_TMR16B1->MCR |= 1<<9| 1<<0; NVIC_EnableIRQ(TIMER_16_1_IRQn);
LPC_TMR16B1->TCR = 1; LPC_TMR16B1->TCR = 1;
} }
void PWMRun(void) {
LPC_SYSCON->SYSAHBCLKCTRL |= 1<<9; // Enables clock for 32-bit counter/timer 0.
LPC_IOCON->PIO1_6 &= ~0x07;
LPC_IOCON->PIO1_6 |= 0x02; // Selects function CT32B0_MAT0
LPC_TMR32B0->MR3 = 4294967; // period
LPC_TMR32B0->MR0 = 4294967/2; // duty
LPC_TMR32B0->MCR = 1<<10; // Reset on MR3: the TC will be reset if MR3 matches it.
LPC_TMR32B0->EMR = 3<<4; // Toggle the corresponding External Match bit/output.
LPC_TMR32B0->PWMC = 1<<0 | 1<<3; // enable pwn
// LPC_TMR32B0->MCR |= 1<<9| 1<<0; NVIC_EnableIRQ(TIMER_32_0_IRQn);
LPC_TMR32B0->TCR = 1;
}

View file

@ -1,4 +1,4 @@
void GetInReport (uint8_t src[], uint32_t length); void GetInReport (uint8_t src[], uint32_t length);
void SetOutReport (uint8_t dst[], uint32_t length); void SetOutReport (uint8_t dst[], uint32_t length);
void PWMRun(void); void EnablePWM1(uint16_t period, uint16_t duty);
void EnablePWM2(uint16_t period, uint16_t duty); void EnablePWM2(uint16_t period, uint16_t duty);

View file

@ -25,6 +25,7 @@ class Device:
# sets pwm (which=1,2), (duty=16bit) # sets pwm (which=1,2), (duty=16bit)
def pwm(self, which, duty): def pwm(self, which, duty):
duty = 65535 - duty
self.epo.write('p' + chr(which) + chr(duty & 0xff) + chr(duty >> 8)) self.epo.write('p' + chr(which) + chr(duty & 0xff) + chr(duty >> 8))
# sets ddswave (wave=square,sine,saw1,saw2) # sets ddswave (wave=square,sine,saw1,saw2)

View file

@ -3,7 +3,7 @@ from PyQt4.QtCore import pyqtSlot
from PyQt4.QtCore import SIGNAL from PyQt4.QtCore import SIGNAL
from PyQt4.QtCore import QObject from PyQt4.QtCore import QObject
from ModuleDebugUi import Ui_ModuleDebug from ModuleDebugUi import Ui_ModuleDebug
#from device import Device from device import Device
class ModuleDebugWidget(QWidget): class ModuleDebugWidget(QWidget):
@ -25,16 +25,17 @@ class ModuleDebugWidget(QWidget):
QObject.connect(self.ui.pushPin2, SIGNAL("clicked(bool)"), self.on_pins_changed) QObject.connect(self.ui.pushPin2, SIGNAL("clicked(bool)"), self.on_pins_changed)
QObject.connect(self.ui.pushPin3, SIGNAL("clicked(bool)"), self.on_pins_changed) QObject.connect(self.ui.pushPin3, SIGNAL("clicked(bool)"), self.on_pins_changed)
# self.dev = Device() self.dev = Device()
print self.dev
@pyqtSlot(int) @pyqtSlot(int)
def on_dialPWM1_valueChanged(self, val): def on_dialPWM1_valueChanged(self, val):
# self.dev.pwm(1, val) self.dev.pwm(1, val)
print 'pwm1:', val print 'pwm1:', val
@pyqtSlot(int) @pyqtSlot(int)
def on_dialPWM2_valueChanged(self, val): def on_dialPWM2_valueChanged(self, val):
# self.dev.pwm(2, val) self.dev.pwm(2, val)
print 'pwm2:', val print 'pwm2:', val
@pyqtSlot(int) @pyqtSlot(int)