Skip to content

Commit

Permalink
Keep "astyled" elements in misc files - small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Oct 3, 2015
1 parent 7c84ba6 commit 80aa05b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Marlin/blinkm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "blinkm.h"

void SendColors(byte red, byte grn, byte blu) {
Wire.begin();
Wire.begin();
Wire.beginTransmission(0x09);
Wire.write('o'); //to disable ongoing script, only needs to be used once
Wire.write('n');
Expand Down
2 changes: 1 addition & 1 deletion Marlin/buzzer.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define BUZZER_H

#if HAS_BUZZER
void buzz(long duration,uint16_t freq);
void buzz(long duration, uint16_t freq);
#endif

#endif //BUZZER_H
11 changes: 5 additions & 6 deletions Marlin/digipot_mcp4451.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#endif

static byte current_to_wiper(float current) {
return byte(ceil(float((DIGIPOT_I2C_FACTOR*current))));
return byte(ceil(float((DIGIPOT_I2C_FACTOR * current))));
}

static void i2c_send(byte addr, byte a, byte b) {
Expand All @@ -28,13 +28,13 @@ static void i2c_send(byte addr, byte a, byte b) {

// This is for the MCP4451 I2C based digipot
void digipot_i2c_set_current(int channel, float current) {
current = min( (float) max( current, 0.0f ), DIGIPOT_I2C_MAX_CURRENT);
current = min((float) max(current, 0.0f), DIGIPOT_I2C_MAX_CURRENT);
// these addresses are specific to Azteeg X3 Pro, can be set to others,
// In this case first digipot is at address A0=0, A1= 0, second one is at A0=0, A1= 1
byte addr = 0x2C; // channel 0-3
if (channel >= 4) {
addr = 0x2E; // channel 4-7
channel -= 4;
addr = 0x2E; // channel 4-7
channel -= 4;
}

// Initial setup
Expand All @@ -50,9 +50,8 @@ void digipot_i2c_init() {
const float digipot_motor_current[] = DIGIPOT_I2C_MOTOR_CURRENTS;
Wire.begin();
// setup initial currents as defined in Configuration_adv.h
for(int i = 0; i < COUNT(digipot_motor_current); i++) {
for (int i = 0; i < COUNT(digipot_motor_current); i++)
digipot_i2c_set_current(i, digipot_motor_current[i]);
}
}

#endif //DIGIPOT_I2C
4 changes: 2 additions & 2 deletions Marlin/utf_mapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
#elif ENABLED(MAPPER_D0D1)
uint8_t utf_hi_char; // UTF-8 high part
bool seen_d5 = false;
char charset_mapper(char c){
char charset_mapper(char c) {
uint8_t d = c;
if ( d >= 0x80u ) { // UTF-8 handling
if ((d >= 0xd0u) && (!seen_d5)) {
Expand Down Expand Up @@ -218,7 +218,7 @@
bool seen_e3 = false;
bool seen_82_83 = false;
char charset_mapper(char c){
uint8_t d = c;
uint8_t d = c;
if ( d >= 0x80 ) { // UTF-8 handling
if ( (d == 0xe3) && (seen_e3 == false)) {
seen_e3 = true;
Expand Down
19 changes: 8 additions & 11 deletions Marlin/watchdog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@


/// intialise watch dog with a 4 sec interrupt time
void watchdog_init()
{
void watchdog_init() {
#if ENABLED(WATCHDOG_RESET_MANUAL)
//We enable the watchdog timer, but only for the interrupt.
//Take care, as this requires the correct order of operation, with interrupts disabled. See the datasheet of any AVR chip for details.
Expand All @@ -30,9 +29,8 @@ void watchdog_init()
}

/// reset watchdog. MUST be called every 1s after init or avr will reset.
void watchdog_reset()
{
wdt_reset();
void watchdog_reset() {
wdt_reset();
}

//===========================================================================
Expand All @@ -41,12 +39,11 @@ void watchdog_reset()

//Watchdog timer interrupt, called if main program blocks >1sec and manual reset is enabled.
#if ENABLED(WATCHDOG_RESET_MANUAL)
ISR(WDT_vect)
{
SERIAL_ERROR_START;
SERIAL_ERRORLNPGM("Something is wrong, please turn off the printer.");
kill(PSTR("ERR:Please Reset")); //kill blocks //16 characters so it fits on a 16x2 display
while(1); //wait for user or serial reset
ISR(WDT_vect) {
SERIAL_ERROR_START;
SERIAL_ERRORLNPGM("Something is wrong, please turn off the printer.");
kill(PSTR("ERR:Please Reset")); //kill blocks //16 characters so it fits on a 16x2 display
while (1); //wait for user or serial reset
}
#endif//RESET_MANUAL

Expand Down

0 comments on commit 80aa05b

Please sign in to comment.