Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Main.cpp « SAM4E « Hardware « src - github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef1f0a18b6fa909ae31314ec8c011b9b1d12bcca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * Main.cpp
 *  Program entry point
 *  Created on: 11 Jul 2020
 *      Author: David
 *  License: GNU GPL version 3
 */

#include <CoreIO.h>
#include <RepRapFirmware.h>

// Program initialisation
void AppInit() noexcept
{
	// When the reset button is pressed on pre-production Duet WiFi boards, if the TMC2660 drivers were previously enabled then we get
	// uncommanded motor movements if the STEP lines pick up any noise. Try to reduce that by initialising the pins that control the drivers early here.
	// On the production boards the ENN line is pulled high by an external pullup resistor and that prevents motor movements.
	// We no longer do the direction pins because we use some of those as board version indicators.
	for (size_t drive = 0; drive < MaxSmartDrivers; ++drive)
	{
		pinMode(STEP_PINS[drive], OUTPUT_LOW);
		pinMode(ENABLE_PINS[drive], OUTPUT_HIGH);
	}
}

// End