Refactor with clang-format
This commit is contained in:
parent
44b2ca3888
commit
8541c5cb7c
19
.vscode/c_cpp_properties.json
vendored
19
.vscode/c_cpp_properties.json
vendored
@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": "Linux",
|
|
||||||
"includePath": [
|
|
||||||
"/usr/avr/include",
|
|
||||||
"${workspaceFolder}/**"
|
|
||||||
],
|
|
||||||
"defines": [
|
|
||||||
"__AVR_ATmega32U4__"
|
|
||||||
],
|
|
||||||
"compilerPath": "/usr/bin/avr-gcc",
|
|
||||||
"cStandard": "c17",
|
|
||||||
"cppStandard": "c++14",
|
|
||||||
"intelliSenseMode": "linux-gcc-x64"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"version": 4
|
|
||||||
}
|
|
10
.vscode/settings.json
vendored
10
.vscode/settings.json
vendored
@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"files.associations": {
|
|
||||||
"io.h": "c",
|
|
||||||
"sfr_defs.h": "c",
|
|
||||||
"string.h": "c",
|
|
||||||
"random": "c",
|
|
||||||
"math.h": "c",
|
|
||||||
"bridge.h": "c"
|
|
||||||
}
|
|
||||||
}
|
|
@ -167,4 +167,3 @@ int cmd_handle_switch_timer(void) {
|
|||||||
|
|
||||||
return timer1_on;
|
return timer1_on;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,4 +10,3 @@ void cmd_handle(cmd_t *command);
|
|||||||
void cmd_handle_set(char *op1, char *op2);
|
void cmd_handle_set(char *op1, char *op2);
|
||||||
void cmd_handle_switch(char *op1, char *op2);
|
void cmd_handle_switch(char *op1, char *op2);
|
||||||
int cmd_handle_switch_timer(void);
|
int cmd_handle_switch_timer(void);
|
||||||
|
|
||||||
|
@ -3,4 +3,3 @@
|
|||||||
void togglePin(volatile uint8_t *port, unsigned int pin);
|
void togglePin(volatile uint8_t *port, unsigned int pin);
|
||||||
void unsetPin(volatile uint8_t *port, unsigned int pin);
|
void unsetPin(volatile uint8_t *port, unsigned int pin);
|
||||||
void setPin(volatile uint8_t *port, unsigned int pin);
|
void setPin(volatile uint8_t *port, unsigned int pin);
|
||||||
|
|
||||||
|
@ -3,4 +3,3 @@
|
|||||||
void pwm_init(void);
|
void pwm_init(void);
|
||||||
void pwm_worker(void);
|
void pwm_worker(void);
|
||||||
void pwm_interrupt(void);
|
void pwm_interrupt(void);
|
||||||
|
|
||||||
|
@ -12,4 +12,3 @@ typedef struct {
|
|||||||
} sm_t;
|
} sm_t;
|
||||||
|
|
||||||
void sm_handleTransition(sm_t *statemachine, sm_state_t to);
|
void sm_handleTransition(sm_t *statemachine, sm_state_t to);
|
||||||
|
|
||||||
|
@ -16,4 +16,3 @@ void tmr_enableT1(void);
|
|||||||
void tmr_disableT1(void);
|
void tmr_disableT1(void);
|
||||||
void tmr_setT1CompareMatch(uint16_t cm);
|
void tmr_setT1CompareMatch(uint16_t cm);
|
||||||
uint16_t tmr_getT1Top(void);
|
uint16_t tmr_getT1Top(void);
|
||||||
|
|
||||||
|
@ -3,4 +3,3 @@
|
|||||||
void uart_init(unsigned int baud);
|
void uart_init(unsigned int baud);
|
||||||
void uart_sendByte(uint8_t byte);
|
void uart_sendByte(uint8_t byte);
|
||||||
int uart_printf(char var, FILE *stream);
|
int uart_printf(char var, FILE *stream);
|
||||||
|
|
||||||
|
@ -1,15 +1,14 @@
|
|||||||
#include <avr/io.h>
|
|
||||||
#include <avr/interrupt.h>
|
#include <avr/interrupt.h>
|
||||||
|
#include <avr/io.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "uart.h"
|
|
||||||
#include "timer.h"
|
|
||||||
#include "commands.h"
|
#include "commands.h"
|
||||||
#include "pins.h"
|
#include "pins.h"
|
||||||
#include "pwm.h"
|
#include "pwm.h"
|
||||||
|
#include "timer.h"
|
||||||
|
#include "uart.h"
|
||||||
|
|
||||||
int main(void)
|
int main(void) {
|
||||||
{
|
|
||||||
sei();
|
sei();
|
||||||
|
|
||||||
/* With this MCU frequency (16 MHz), 25 is a baudrate of 38.4k baud */
|
/* With this MCU frequency (16 MHz), 25 is a baudrate of 38.4k baud */
|
||||||
|
@ -12,4 +12,3 @@ void unsetPin(volatile uint8_t *port, unsigned int pin) {
|
|||||||
void togglePin(volatile uint8_t *port, unsigned int pin) {
|
void togglePin(volatile uint8_t *port, unsigned int pin) {
|
||||||
*port ^= (1 << pin);
|
*port ^= (1 << pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
18
src/pwm.c
18
src/pwm.c
@ -1,6 +1,6 @@
|
|||||||
#include <stdio.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "pwm.h"
|
#include "pwm.h"
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
@ -8,19 +8,11 @@
|
|||||||
int interrupt_received = 0;
|
int interrupt_received = 0;
|
||||||
uint32_t interrupt_counter = 0;
|
uint32_t interrupt_counter = 0;
|
||||||
|
|
||||||
void pwm_init(void)
|
void pwm_init(void) { tmr_subToT1Overflow(pwm_interrupt); }
|
||||||
{
|
|
||||||
tmr_subToT1Overflow(pwm_interrupt);
|
|
||||||
}
|
|
||||||
|
|
||||||
void pwm_worker(void)
|
void pwm_worker(void) {
|
||||||
{
|
|
||||||
if (!interrupt_received)
|
if (!interrupt_received)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void pwm_interrupt(void)
|
void pwm_interrupt(void) {}
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
#include "statemachine.h"
|
#include "statemachine.h"
|
||||||
|
|
||||||
void sm_handleTransition(sm_t *statemachine, sm_state_t to) {}
|
void sm_handleTransition(sm_t *statemachine, sm_state_t to) {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user