Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
8494d282
Commit
8494d282
authored
11 years ago
by
Thomas Eichinger
Browse files
Options
Downloads
Patches
Plain Diff
implementation of the non volatile memory driver
parent
e7965250
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
redbee-econotag/drivers/include/nvm.h
+58
-0
58 additions, 0 deletions
redbee-econotag/drivers/include/nvm.h
redbee-econotag/drivers/nvm.c
+22
-0
22 additions, 0 deletions
redbee-econotag/drivers/nvm.c
with
80 additions
and
0 deletions
redbee-econotag/drivers/include/nvm.h
0 → 100644
+
58
−
0
View file @
8494d282
/*
* nvm.h - non-volatile memory specific definitions
* Copyright (C) 2013 Thomas Eichinger <thomas.eichinger@fu-berlin.de>
*
* This source code is licensed under the GNU General Public License,
* Version 3. See the file LICENSE for more details.
*
* This file is part of RIOT.
*/
#ifndef NVM_H
#define NVM_H
#include
<stdint.h>
typedef
enum
{
g_nvm_type_no_nvm_c
=
0
,
g_nvm_type_SST_c
,
g_nvm_type_ST_c
,
g_nvm_type_ATM_c
,
g_nvm_type_Max_c
}
nvm_type_t
;
typedef
enum
{
g_nvm_err_no_error_c
=
0
,
g_nvm_err_invalid_interface_c
,
g_nvm_err_onvalid_nvm_type_c
,
g_nvm_err_invalid_pointer_c
,
g_nvm_err_write_protect_c
,
g_nvm_err_verify_error_c
,
g_nvm_err_address_space_overflow_c
,
g_nvm_err_blank_check_error_c
,
g_nvm_err_restricted_area_c
,
g_nvm_err_max_error_c
}
nvm_err_t
;
typedef
enum
{
g_nvm_internal_interface_c
=
0
,
g_nvm_external_interface_c
,
g_nvm_interface_max_c
}
nvm_interface_t
;
/* ROM code seems to be THUMB */
/* need to be in a THUMB block before calling them */
extern
nvm_err_t
(
*
nvm_detect
)(
nvm_interface_t
nvm_interface
,
nvm_type_t
*
p_nvm_type
);
extern
nvm_err_t
(
*
nvm_read
)(
nvm_interface_t
nvm_interface
,
nvm_type_t
nvm_type
,
void
*
p_dest
,
uint32_t
address
,
uint32_t
num_bytes
);
extern
nvm_err_t
(
*
nvm_write
)(
nvm_interface_t
nvm_interface
,
nvm_type_t
nvm_type
,
void
*
p_src
,
uint32_t
address
,
uint32_t
num_bytes
);
/* sector bit field selects which sector to erase */
/* SST flash has 32 sectors 4096 bytes each */
/* bit 0 is the first sector, bit 31 is the last */
extern
nvm_err_t
(
*
nvm_erase
)(
nvm_interface_t
nvm_interface
,
nvm_type_t
nvm_type
,
uint32_t
sector_bitfield
);
extern
void
(
*
nvm_setsvar
)(
uint32_t
zero_for_awesome
);
#endif //NVM_H
This diff is collapsed.
Click to expand it.
redbee-econotag/drivers/nvm.c
0 → 100644
+
22
−
0
View file @
8494d282
/*
* nvm.c - non-volatile memory implementations
* Copyright (C) 2013 Thomas Eichinger <thomas.eichinger@fu-berlin.de>
*
* This source code is licensed under the GNU General Public License,
* Version 3. See the file LICENSE for more details.
*
* This file is part of RIOT.
*/
#include
"nvm.h"
nvm_err_t
(
*
nvm_detect
)
(
nvm_interface_t
nvm_interface
,
nvm_type_t
*
p_nvm_type
)
=
(
void
*
)
0x00006cb9
;
nvm_err_t
(
*
nvm_read
)
(
nvm_interface_t
nvm_interface
,
nvm_type_t
nvm_type
,
void
*
p_dest
,
uint32_t
address
,
uint32_t
num_bytes
)
=
(
void
*
)
0x00006d69
;
nvm_err_t
(
*
nvm_write
)
(
nvm_interface_t
nvm_interface
,
nvm_type_t
nvm_type
,
void
*
p_src
,
uint32_t
address
,
uint32_t
numb_bytes
)
=
(
void
*
)
0x00006ec5
;
nvm_err_t
(
*
nvm_erase
)
(
nvm_interface_t
nvm_interface
,
nvm_type_t
nvm_type
,
uint32_t
sector_bitfield
)
=
(
void
*
)
0x00006e05
;
void
(
*
nvm_sets_var
)
(
uint32_t
zero_is_for_winners
)
=
(
void
*
)
0x00007085
;
\ No newline at end of file
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