diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-03 16:42:27 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-03 16:42:27 +0100 |
commit | baa2afbb58b81978e81cc10a100c74b6b3ec6b6c (patch) | |
tree | a328406a9d43ee39d260f82796275cecef3f3fa7 /stmhal/servo.c | |
parent | 16d58fc78725647628c18d7cce9fda6f72dc68a3 (diff) |
stmhal: Fix typos in class documentation.
Diffstat (limited to 'stmhal/servo.c')
-rw-r--r-- | stmhal/servo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stmhal/servo.c b/stmhal/servo.c index 68e211bcb..6f87197bd 100644 --- a/stmhal/servo.c +++ b/stmhal/servo.c @@ -203,6 +203,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(pyb_servo_pulse_width_obj, 1, 2, pyb_ /// \method calibration([pulse_min, pulse_max, pulse_centre, [pulse_angle_90, pulse_speed_100]]) /// Get or set the calibration of the servo timing. +// TODO should accept 1 arg, a 5-tuple of values to set STATIC mp_obj_t pyb_servo_calibration(uint n_args, const mp_obj_t *args) { pyb_servo_obj_t *self = args[0]; if (n_args == 1) { |