Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
01d50d0d
Commit
01d50d0d
authored
11 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
stm: Wrap some functions in MICROPY_ENABLE_FLOAT.
parent
0c36da0b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
stm/adc.c
+1
-1
1 addition, 1 deletion
stm/adc.c
stm/printf.c
+2
-0
2 additions, 0 deletions
stm/printf.c
stm/servo.c
+4
-0
4 additions, 0 deletions
stm/servo.c
with
7 additions
and
1 deletion
stm/adc.c
+
1
−
1
View file @
01d50d0d
...
...
@@ -300,7 +300,7 @@ static mp_obj_t adc_all_read_core_vbat(mp_obj_t self_in) {
pyb_obj_adc_all_t
*
self
=
self_in
;
if
(
self
->
is_enabled
)
{
float
data
=
adc_read_core_vbat
();
float
data
=
adc_read_core_vbat
();
return
mp_obj_new_float
(
data
);
}
else
{
return
mp_const_none
;
...
...
This diff is collapsed.
Click to expand it.
stm/printf.c
+
2
−
0
View file @
01d50d0d
...
...
@@ -209,6 +209,7 @@ int pfenv_printf(const pfenv_t *pfenv, const char *fmt, va_list args) {
case
'P'
:
// ?
chrs
+=
pfenv_print_int
(
pfenv
,
va_arg
(
args
,
int
),
0
,
16
,
'A'
,
flags
,
width
);
break
;
#if MICROPY_ENABLE_FLOAT
case
'g'
:
{
// This is a very hacky approach to printing floats. Micropython
...
...
@@ -234,6 +235,7 @@ int pfenv_printf(const pfenv_t *pfenv, const char *fmt, va_list args) {
}
break
;
}
#endif
default:
pfenv
->
print_strn
(
pfenv
->
data
,
fmt
,
1
);
chrs
+=
1
;
...
...
This diff is collapsed.
Click to expand it.
stm/servo.c
+
4
−
0
View file @
01d50d0d
...
...
@@ -124,7 +124,11 @@ static void servo_obj_print(void (*print)(void *env, const char *fmt, ...), void
static
mp_obj_t
servo_obj_angle
(
mp_obj_t
self_in
,
mp_obj_t
angle
)
{
pyb_servo_obj_t
*
self
=
self_in
;
#if MICROPY_ENABLE_FLOAT
machine_int_t
v
=
152
+
85
.
0
*
mp_obj_get_float
(
angle
)
/
90
.
0
;
#else
machine_int_t
v
=
152
+
85
*
mp_obj_get_int
(
angle
)
/
90
;
#endif
if
(
v
<
65
)
{
v
=
65
;
}
if
(
v
>
210
)
{
v
=
210
;
}
switch
(
self
->
servo_id
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment