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
71e9bfa2
Commit
71e9bfa2
authored
11 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
py: Add mp_binary_set_val_array_from_int, to store an int directly.
parent
b11b85ad
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
py/binary.c
+15
-5
15 additions, 5 deletions
py/binary.c
py/binary.h
+1
-0
1 addition, 0 deletions
py/binary.h
with
16 additions
and
5 deletions
py/binary.c
+
15
−
5
View file @
71e9bfa2
...
@@ -151,11 +151,21 @@ mp_obj_t mp_binary_get_val(char struct_type, char val_type, byte **ptr) {
...
@@ -151,11 +151,21 @@ mp_obj_t mp_binary_get_val(char struct_type, char val_type, byte **ptr) {
}
}
void
mp_binary_set_val_array
(
char
typecode
,
void
*
p
,
int
index
,
mp_obj_t
val_in
)
{
void
mp_binary_set_val_array
(
char
typecode
,
void
*
p
,
int
index
,
mp_obj_t
val_in
)
{
machine_int_t
val
=
0
;
switch
(
typecode
)
{
if
(
MP_OBJ_IS_INT
(
val_in
))
{
#if MICROPY_ENABLE_FLOAT
val
=
mp_obj_int_get
(
val_in
);
case
'f'
:
((
float
*
)
p
)[
index
]
=
mp_obj_float_get
(
val_in
);
break
;
case
'd'
:
((
double
*
)
p
)[
index
]
=
mp_obj_float_get
(
val_in
);
break
;
#endif
default:
mp_binary_set_val_array_from_int
(
typecode
,
p
,
index
,
mp_obj_get_int
(
val_in
));
}
}
}
void
mp_binary_set_val_array_from_int
(
char
typecode
,
void
*
p
,
int
index
,
machine_int_t
val
)
{
switch
(
typecode
)
{
switch
(
typecode
)
{
case
'b'
:
case
'b'
:
((
int8_t
*
)
p
)[
index
]
=
val
;
((
int8_t
*
)
p
)[
index
]
=
val
;
...
@@ -187,10 +197,10 @@ void mp_binary_set_val_array(char typecode, void *p, int index, mp_obj_t val_in)
...
@@ -187,10 +197,10 @@ void mp_binary_set_val_array(char typecode, void *p, int index, mp_obj_t val_in)
#endif
#endif
#if MICROPY_ENABLE_FLOAT
#if MICROPY_ENABLE_FLOAT
case
'f'
:
case
'f'
:
((
float
*
)
p
)[
index
]
=
mp_obj_float_get
(
val_in
)
;
((
float
*
)
p
)[
index
]
=
val
;
break
;
break
;
case
'd'
:
case
'd'
:
((
double
*
)
p
)[
index
]
=
mp_obj_float_get
(
val_in
)
;
((
double
*
)
p
)[
index
]
=
val
;
break
;
break
;
#endif
#endif
}
}
...
...
This diff is collapsed.
Click to expand it.
py/binary.h
+
1
−
0
View file @
71e9bfa2
...
@@ -6,3 +6,4 @@ int mp_binary_get_size(char typecode);
...
@@ -6,3 +6,4 @@ int mp_binary_get_size(char typecode);
mp_obj_t
mp_binary_get_val_array
(
char
typecode
,
void
*
p
,
int
index
);
mp_obj_t
mp_binary_get_val_array
(
char
typecode
,
void
*
p
,
int
index
);
mp_obj_t
mp_binary_get_val
(
char
struct_type
,
char
val_type
,
byte
**
ptr
);
mp_obj_t
mp_binary_get_val
(
char
struct_type
,
char
val_type
,
byte
**
ptr
);
void
mp_binary_set_val_array
(
char
typecode
,
void
*
p
,
int
index
,
mp_obj_t
val_in
);
void
mp_binary_set_val_array
(
char
typecode
,
void
*
p
,
int
index
,
mp_obj_t
val_in
);
void
mp_binary_set_val_array_from_int
(
char
typecode
,
void
*
p
,
int
index
,
machine_int_t
val
);
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