Merge branch 'feature/e-endstop' into merge-abc-with-homing
[clinton/Smoothieware.git] / src / libs / SlowTicker.cpp
CommitLineData
df27a6a3 1/*
cd011f58
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
cd011f58
AW
6*/
7
ded56b35
AW
8using namespace std;
9#include <vector>
ded56b35
AW
10#include "libs/nuts_bolts.h"
11#include "libs/Module.h"
12#include "libs/Kernel.h"
13#include "SlowTicker.h"
cb2e6bc6 14#include "StepTicker.h"
d9ebc974 15#include "libs/Hook.h"
3c4f2dd8 16#include "modules/robot/Conveyor.h"
61134a65 17#include "Gcode.h"
ded56b35 18
65fe0408 19#include <mri.h>
ded56b35 20
93694d6b
AW
21// This module uses a Timer to periodically call hooks
22// Modules register with a function ( callback ) and a frequency, and we then call that function at the given frequency.
23
ded56b35
AW
24SlowTicker* global_slow_ticker;
25
26SlowTicker::SlowTicker(){
27 global_slow_ticker = this;
93694d6b 28
62675f96 29 // ISP button FIXME: WHy is this here?
65fe0408 30 ispbtn.from_string("2.10")->as_input()->pull_up();
ab2a4410 31
62675f96 32 LPC_SC->PCONP |= (1 << 22); // Power Ticker ON
62675f96 33 LPC_TIM2->MCR = 3; // Match on MR0, reset on MR0
b772a11c
JM
34 // do not enable interrupt until setup is complete
35 LPC_TIM2->TCR = 0; // Disable interrupt
36
37 max_frequency = 5; // initial max frequency is set to 5Hz
38 set_frequency(max_frequency);
39 flag_1s_flag = 0;
40}
41
42void SlowTicker::start()
43{
62675f96
JM
44 LPC_TIM2->TCR = 1; // Enable interrupt
45 NVIC_EnableIRQ(TIMER2_IRQn); // Enable interrupt handler
ded56b35
AW
46}
47
0854d371 48void SlowTicker::on_module_loaded(){
4df07f88
MM
49 register_for_event(ON_IDLE);
50}
51
93694d6b 52// Set the base frequency we use for all sub-frequencies
ded56b35 53void SlowTicker::set_frequency( int frequency ){
1fcb3a2a 54 this->interval = (SystemCoreClock >> 2) / frequency; // SystemCoreClock/4 = Timer increments in a second
50b9ac30 55 LPC_TIM2->MR0 = this->interval;
7dd8133c
AW
56 LPC_TIM2->TCR = 3; // Reset
57 LPC_TIM2->TCR = 1; // Reset
574d9897 58 flag_1s_count= SystemCoreClock>>2;
ded56b35
AW
59}
60
93694d6b 61// The actual interrupt being called by the timer, this is where work is done
0854d371 62void SlowTicker::tick(){
eaeca34b 63
b9ad75de 64 // Call all hooks that need to be called
ac971358 65 for (Hook* hook : this->hooks){
50b9ac30
MM
66 hook->countdown -= this->interval;
67 if (hook->countdown < 0)
68 {
69 hook->countdown += hook->interval;
d9ebc974 70 hook->call();
df27a6a3 71 }
ded56b35 72 }
2f7d3dba 73
b9ad75de 74 // deduct tick time from second counter
ab2a4410 75 flag_1s_count -= this->interval;
eaeca34b 76 // if a whole second has elapsed,
ab2a4410
MM
77 if (flag_1s_count < 0)
78 {
eaeca34b 79 // add a second to our counter
ab2a4410 80 flag_1s_count += SystemCoreClock >> 2;
eaeca34b 81 // and set a flag for idle event to pick up
ab2a4410
MM
82 flag_1s_flag++;
83 }
84
d337942a
MM
85 // Enter MRI mode if the ISP button is pressed
86 // TODO: This should have it's own module
65fe0408
MM
87 if (ispbtn.get() == 0)
88 __debugbreak();
4df07f88 89
ded56b35
AW
90}
91
ab2a4410 92bool SlowTicker::flag_1s(){
eaeca34b
MM
93 // atomic flag check routine
94 // first disable interrupts
ab2a4410 95 __disable_irq();
eaeca34b 96 // then check for a flag
ab2a4410
MM
97 if (flag_1s_flag)
98 {
eaeca34b 99 // if we have a flag, decrement the counter
ab2a4410 100 flag_1s_flag--;
eaeca34b 101 // re-enable interrupts
ab2a4410 102 __enable_irq();
eaeca34b 103 // and tell caller that we consumed a flag
ab2a4410
MM
104 return true;
105 }
eaeca34b 106 // if no flag, re-enable interrupts and return false
ab2a4410
MM
107 __enable_irq();
108 return false;
109}
110
82d1ceb3
JM
111#include "gpio.h"
112extern GPIO leds[];
4df07f88
MM
113void SlowTicker::on_idle(void*)
114{
82d1ceb3 115 static uint16_t ledcnt= 0;
73706276 116 if(THEKERNEL->is_using_leds()) {
21320fc6
JM
117 // flash led 3 to show we are alive
118 leds[2]= (ledcnt++ & 0x1000) ? 1 : 0;
119 }
82d1ceb3 120
eaeca34b 121 // if interrupt has set the 1 second flag
4df07f88 122 if (flag_1s())
eaeca34b 123 // fire the on_second_tick event
347854ff 124 THEKERNEL->call_event(ON_SECOND_TICK);
4df07f88
MM
125}
126
ded56b35 127extern "C" void TIMER2_IRQHandler (void){
7dd8133c 128 if((LPC_TIM2->IR >> 0) & 1){ // If interrupt register set for MR0
df27a6a3 129 LPC_TIM2->IR |= 1 << 0; // Reset it
ded56b35 130 }
df27a6a3 131 global_slow_ticker->tick();
ded56b35
AW
132}
133