Skip to content
Snippets Groups Projects
Commit ae7d26b6 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Added module to control PMT shutter. Added temporary commands to main.c to control.

parent 256c0629
Branches
Tags
1 merge request!1Develop
...@@ -38,7 +38,7 @@ volatile uint16_t tcf0period = 0; ...@@ -38,7 +38,7 @@ volatile uint16_t tcf0period = 0;
uint32_t skip_samples = 0; uint32_t skip_samples = 0;
//Private function declarations //Private function declarations
uint16_t set_timer_period(uint32_t period, volatile void *tc); //uint16_t set_timer_period(uint32_t period, volatile void *tc);
static void precond_rtc_callback(uint32_t time); static void precond_rtc_callback(uint32_t time);
static void porte_int0_lsv(void); static void porte_int0_lsv(void);
static void tcf0_ovf_callback(void); static void tcf0_ovf_callback(void);
......
...@@ -76,6 +76,7 @@ extern uint16_t g_gain; ...@@ -76,6 +76,7 @@ extern uint16_t g_gain;
extern uint8_t g_short; extern uint8_t g_short;
extern uint8_t autogain_enable; extern uint8_t autogain_enable;
uint16_t set_timer_period(uint32_t period, volatile void *tc);
void experiment_handler(char command); void experiment_handler(char command);
void pot_init(void); void pot_init(void);
void pot_set_gain(void); void pot_set_gain(void);
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include "asf.h" #include "asf.h"
#include "settings.h" #include "settings.h"
#include "tcs.h" #include "tcs.h"
#include "shutter.h"
#include <string.h> #include <string.h>
#include <math.h> #include <math.h>
#include <stdint.h> #include <stdint.h>
...@@ -23,6 +24,8 @@ int8_t command_handler(char command){ ...@@ -23,6 +24,8 @@ int8_t command_handler(char command){
* Calls functions in * Calls functions in
* @param command Command character input. * @param command Command character input.
*/ */
double p1;
switch (command){ switch (command){
case 'E': //Experiment options case 'E': //Experiment options
...@@ -44,6 +47,23 @@ int8_t command_handler(char command){ ...@@ -44,6 +47,23 @@ int8_t command_handler(char command){
printf("T%u.%u.%u.%u\n\r", tcs_data[0], tcs_data[1], tcs_data[2], tcs_data[3]); printf("T%u.%u.%u.%u\n\r", tcs_data[0], tcs_data[1], tcs_data[2], tcs_data[3]);
} }
break; break;
case 'Z': //Test shutter
scanf("%lg",&p1);
shutter_cont(p1);
break;
case 'z':
shutter_cont_stop();
break;
case '1':
shutter_close();
break;
case '2':
shutter_open();
break;
case 'V': //check version case 'V': //check version
printf("V%u.%u\n\r", BOARD_VER_MAJOR, BOARD_VER_MINOR); printf("V%u.%u\n\r", BOARD_VER_MAJOR, BOARD_VER_MINOR);
...@@ -110,7 +130,7 @@ int main(void){ ...@@ -110,7 +130,7 @@ int main(void){
} }
tcs_init(); tcs_init();
shutter_init();
program_loop: program_loop:
while(getchar() != '!'); while(getchar() != '!');
......
//
// shutter.c
// dstat-firmware
//
// Created by Michael Dryden on 2016-01-27.
// Copyright © 2016 wheeler lab. All rights reserved.
//
#include "shutter.h"
#include <stdint.h>
#include <tc.h>
#include <math.h>
void shutter_init(void){
ioport_set_pin_dir(SHUTTER_PIN, IOPORT_DIR_OUTPUT);
ioport_set_pin_level(SHUTTER_PIN, 0);
}
void shutter_open(void){
ioport_set_pin_level(SHUTTER_PIN, 1);
}
void shutter_close(void){
ioport_set_pin_level(SHUTTER_PIN, 0);
}
uint8_t shutter_cont(double freq){
tc_write_clock_source(&SHUTTER_TC, TC_CLKSEL_OFF_gc);
if (freq > 30 || freq < 0.23842) {
return 1;
}
else{
tc_enable(&SHUTTER_TC);
tc_set_wgm(&SHUTTER_TC, TC_WG_FRQ);
tc_enable_cc_channels(&SHUTTER_TC, TC_CCAEN);
tc_write_clock_source(&SHUTTER_TC, TC_CLKSEL_DIV64_gc);
uint16_t temp_div = ceil((1/(2*freq))*F_CPU/65536);
uint16_t divider = 0;
if (temp_div <= 64){
tc_write_clock_source(&SHUTTER_TC,TC_CLKSEL_DIV64_gc);
divider = 64;
}
else if (temp_div <= 256){
tc_write_clock_source(&SHUTTER_TC,TC_CLKSEL_DIV256_gc);
divider = 256;
}
else if (temp_div <= 1024){
tc_write_clock_source(&SHUTTER_TC,TC_CLKSEL_DIV1024_gc);
divider = 1024;
}
else{
printf("#ERR: Frequency/ADC rate is too low\n\r");
return 0;
}
SHUTTER_TC.CCA = ((uint16_t)((F_CPU/divider)/(2*freq)))-1; //f=1/(2*(CCA+1)*f_clk)
return 0;
}
}
void shutter_cont_stop(void){
tc_write_clock_source(&SHUTTER_TC, TC_CLKSEL_OFF_gc);
tc_set_wgm(&SHUTTER_TC, TC_WG_NORMAL);
tc_disable(&SHUTTER_TC);
ioport_set_pin_level(SHUTTER_PIN, 0);
}
\ No newline at end of file
//
// shutter.h
// dstat-firmware
//
// Created by Michael Dryden on 2016-01-27.
// Copyright © 2016 wheeler lab. All rights reserved.
//
#ifndef shutter_h
#define shutter_h
#include <stdio.h>
#include <ioport.h>
#define SHUTTER_PIN IOPORT_CREATE_PIN(PORTE,0)
#define SHUTTER_TC TCE0
void shutter_init(void);
void shutter_open(void);
void shutter_close(void);
uint8_t shutter_cont(double freq);
void shutter_cont_stop(void);
#endif /* shutter_h */
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment