Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DIOT Monitoring Module
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
DIOT Monitoring Module
Commits
4d301463
Commit
4d301463
authored
5 years ago
by
Christos Gentsos
Browse files
Options
Downloads
Patches
Plain Diff
Refactor: shorten names of manufacturer const strs, query cmd fncs
parent
2ffb8b66
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main_fw/src/i2c_impl.c
+17
-17
17 additions, 17 deletions
main_fw/src/i2c_impl.c
with
17 additions
and
17 deletions
main_fw/src/i2c_impl.c
+
17
−
17
View file @
4d301463
...
...
@@ -8,14 +8,14 @@
#include
<usb_debug.h>
const
char
MFR_ID
[]
=
"CERN (be/co)"
;
const
char
MFR_M
ODE
L
[]
=
"DIOT MoniMod"
;
const
char
MFR_REV
ISION
[]
=
"0.1.0"
;
const
char
MFR_LOC
ATION
[]
=
"Geneva"
;
const
char
MFR_DAT
E
[]
=
"190801"
;
const
char
MFR_SER
IAL
[]
=
"123456789"
;
void
proc_
query_prp
();
void
proc_
query_cln
();
const
char
MFR_M
D
L
[]
=
"DIOT MoniMod"
;
const
char
MFR_REV
[]
=
"0.1.0"
;
const
char
MFR_LOC
[]
=
"Geneva"
;
const
char
MFR_DAT
[]
=
"190801"
;
const
char
MFR_SER
[]
=
"123456789"
;
void
query_prp
();
void
query_cln
();
uint8_t
query_result
;
extern
uint32_t
secondary_fw_start
;
...
...
@@ -30,13 +30,13 @@ static cmd_space_t cmds = {
{
4
,
2
,
(
uint8_t
[]){
0xde
,
0xad
},
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
5
,
1
,
(
uint8_t
*
)
NULL
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
6
,
2
,
(
uint8_t
*
)
NULL
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x1A
,
-
1
,
(
uint8_t
*
)
NULL
,
proc_
query_prp
,
proc_
query_cln
},
{
0x99
,
-
(
int8_t
)
sizeof
(
MFR_ID
),
(
uint8_t
*
)
&
MFR_ID
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9A
,
-
(
int8_t
)
sizeof
(
MFR_M
ODEL
),
(
uint8_t
*
)
&
MFR_M
ODEL
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9B
,
-
(
int8_t
)
sizeof
(
MFR_REV
ISION
),
(
uint8_t
*
)
&
MFR_REV
ISION
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9C
,
-
(
int8_t
)
sizeof
(
MFR_LOC
ATION
),
(
uint8_t
*
)
&
MFR_LOC
ATION
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9D
,
-
(
int8_t
)
sizeof
(
MFR_DAT
E
),
(
uint8_t
*
)
&
MFR_DAT
E
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9E
,
-
(
int8_t
)
sizeof
(
MFR_SER
IAL
),
(
uint8_t
*
)
&
MFR_SER
IAL
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
}}
{
0x1A
,
-
1
,
(
uint8_t
*
)
NULL
,
query_prp
,
query_cln
},
{
0x99
,
-
(
int8_t
)
sizeof
(
MFR_ID
),
(
uint8_t
*
)
&
MFR_ID
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9A
,
-
(
int8_t
)
sizeof
(
MFR_M
DL
),
(
uint8_t
*
)
&
MFR_M
DL
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9B
,
-
(
int8_t
)
sizeof
(
MFR_REV
),
(
uint8_t
*
)
&
MFR_REV
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9C
,
-
(
int8_t
)
sizeof
(
MFR_LOC
),
(
uint8_t
*
)
&
MFR_LOC
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9D
,
-
(
int8_t
)
sizeof
(
MFR_DAT
),
(
uint8_t
*
)
&
MFR_DAT
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
},
{
0x9E
,
-
(
int8_t
)
sizeof
(
MFR_SER
),
(
uint8_t
*
)
&
MFR_SER
,
(
fp_t
)
NULL
,
(
fp_t
)
NULL
}}
};
void
written_fw_block
();
...
...
@@ -153,7 +153,7 @@ void setup_I2C_structs(cmd_space_t **impl_cmds, cmd_space_t **impl_ext_cmds)
fw_write_buf
=
(
uint8_t
*
)
malloc
(
FLASH_ROW_SIZE
);
}
void
proc_
query_prp
()
void
query_prp
()
{
uint8_t
query_cmd
;
uint16_t
query_cmd_idx
;
...
...
@@ -170,7 +170,7 @@ void proc_query_prp()
query_result
=
0
;
}
void
proc_
query_cln
()
void
query_cln
()
{
cmds
.
cmds
[
in_addr_space
(
&
cmds
,
0x1A
)].
data_pnt
=
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
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