Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LabComm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
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
Show more breadcrumbs
Anders Blomdell
LabComm
Commits
3cdd9b11
Commit
3cdd9b11
authored
11 years ago
by
Anders Blomdell
Browse files
Options
Downloads
Patches
Plain Diff
Added forgotten file.
parent
9ed8e370
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.bzrignore
+1
-0
1 addition, 0 deletions
.bzrignore
examples/Makefile
+1
-1
1 addition, 1 deletion
examples/Makefile
lib/c/labcomm_error.h
+31
-0
31 additions, 0 deletions
lib/c/labcomm_error.h
with
33 additions
and
1 deletion
.bzrignore
+
1
−
0
View file @
3cdd9b11
...
...
@@ -31,3 +31,4 @@ examples/simple/example_decoder
examples/simple/example_encoder
lib/c/test/test_labcomm_basic_type_encoding
lib/c/test/test_labcomm_generated_encoding
lib/java/se/lth/control/labcomm/WriterWrapper.class
This diff is collapsed.
Click to expand it.
examples/Makefile
+
1
−
1
View file @
3cdd9b11
all
:
echo
To be
done
...
$(
MAKE
)
-C
twoway e
test
:
echo
More to be
done
...
cd
simple
;
sh compile.sh
&&
sh run.sh
...
...
This diff is collapsed.
Click to expand it.
lib/c/labcomm_error.h
0 → 100644
+
31
−
0
View file @
3cdd9b11
#ifndef __LABCOMM_ERROR_H__
#define __LABCOMM_ERROR_H__
enum
labcomm_error
{
#define LABCOMM_ERROR(name, description) name ,
#include
"labcomm_error.h"
#undef LABCOMM_ERROR
};
#endif
#ifdef LABCOMM_ERROR
LABCOMM_ERROR
(
LABCOMM_ERROR_ENC_NO_REG_SIGNATURE
,
"Encoder has no registration for this signature"
)
LABCOMM_ERROR
(
LABCOMM_ERROR_ENC_BUF_FULL
,
"The labcomm buffer is full"
)
LABCOMM_ERROR
(
LABCOMM_ERROR_DEC_UNKNOWN_DATATYPE
,
"Decoder: Unknown datatype"
)
LABCOMM_ERROR
(
LABCOMM_ERROR_DEC_INDEX_MISMATCH
,
"Decoder: index mismatch"
)
LABCOMM_ERROR
(
LABCOMM_ERROR_DEC_TYPE_NOT_FOUND
,
"Decoder: type not found"
)
LABCOMM_ERROR
(
LABCOMM_ERROR_UNIMPLEMENTED_FUNC
,
"This function is not yet implemented"
)
LABCOMM_ERROR
(
LABCOMM_ERROR_MEMORY
,
"Could not allocate memory"
)
LABCOMM_ERROR
(
LABCOMM_ERROR_USER_DEF
,
"User defined error"
)
#endif
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