remove weird unicode chars
[clinton/Smoothieware.git] / src / libs / SlowTicker.cpp
CommitLineData
cd011f58
AW
1/*
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.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
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"
d9ebc974 14#include "libs/Hook.h"
da3a10b9 15#include "system_LPC17xx.h" // mbed.h lib
ded56b35
AW
16
17
18SlowTicker* global_slow_ticker;
19
20SlowTicker::SlowTicker(){
d9ebc974 21 this->max_frequency = 1;
ded56b35 22 global_slow_ticker = this;
7dd8133c 23 LPC_SC->PCONP |= (1 << 22); // Power Ticker ON
d9ebc974 24 LPC_TIM2->MR0 = 10000; // Initial dummy value for Match Register
7dd8133c
AW
25 LPC_TIM2->MCR = 3; // Match on MR0, reset on MR0
26 LPC_TIM2->TCR = 1; // Enable interrupt
27 NVIC_EnableIRQ(TIMER2_IRQn); // Enable interrupt handler
ded56b35
AW
28}
29
30void SlowTicker::set_frequency( int frequency ){
7b49793d 31 LPC_TIM2->MR0 = int(floor((SystemCoreClock/4)/frequency)); // SystemCoreClock/4 = Timer increments in a second
7dd8133c
AW
32 LPC_TIM2->TCR = 3; // Reset
33 LPC_TIM2->TCR = 1; // Reset
ded56b35
AW
34}
35
36void SlowTicker::tick(){
2f7d3dba
AW
37
38 LPC_GPIO1->FIODIR |= 1<<20;
39 LPC_GPIO1->FIOSET = 1<<20;
40
9551de48 41 for (unsigned int i=0; i<this->hooks.size(); i++){
d9ebc974
AW
42 Hook* hook = this->hooks.at(i);
43 hook->counter += ( hook->frequency / this->max_frequency );
d9ebc974
AW
44 if( hook->counter > 0 ){
45 hook->counter-=1;
d9ebc974
AW
46 hook->call();
47 }
ded56b35 48 }
2f7d3dba
AW
49
50 LPC_GPIO1->FIOCLR = 1<<20;
51
ded56b35
AW
52}
53
54extern "C" void TIMER2_IRQHandler (void){
7dd8133c
AW
55 if((LPC_TIM2->IR >> 0) & 1){ // If interrupt register set for MR0
56 LPC_TIM2->IR |= 1 << 0; // Reset it
ded56b35 57 }
2f7d3dba 58 global_slow_ticker->tick();
ded56b35
AW
59}
60