2019-03-26 06:03:23 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-03-26 06:03:23 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2019-03-26 06:03:23 +00:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-03-26 06:03:23 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifdef TARGET_LPC1768
|
|
|
|
|
2022-02-17 18:50:31 -06:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
2019-03-26 06:03:23 +00:00
|
|
|
#include <pwm.h>
|
|
|
|
|
2022-02-17 18:50:31 -06:00
|
|
|
void MarlinHAL::set_pwm_duty(const pin_t pin, const uint16_t v, const uint16_t v_size/*=255*/, const bool invert/*=false*/) {
|
2021-11-12 12:14:28 -06:00
|
|
|
if (!LPC176x::pin_is_valid(pin)) return;
|
2021-11-16 16:24:53 +01:00
|
|
|
if (LPC176x::pwm_attach_pin(pin))
|
2021-11-12 12:14:28 -06:00
|
|
|
LPC176x::pwm_write_ratio(pin, invert ? 1.0f - (float)v / v_size : (float)v / v_size); // map 1-254 onto PWM range
|
2019-03-26 06:03:23 +00:00
|
|
|
}
|
|
|
|
|
2022-02-17 18:50:31 -06:00
|
|
|
void MarlinHAL::set_pwm_frequency(const pin_t pin, const uint16_t f_desired) {
|
2022-01-10 20:29:09 -06:00
|
|
|
LPC176x::pwm_set_frequency(pin, f_desired);
|
|
|
|
}
|
2021-11-02 01:47:16 -04:00
|
|
|
|
2019-03-26 06:03:23 +00:00
|
|
|
#endif // TARGET_LPC1768
|