Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
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
Show more breadcrumbs
card10
firmware
Merge requests
!18
Python interrupts
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Python interrupts
python-interrupts
into
master
Overview
21
Commits
3
Pipelines
13
Changes
14
Merged
schneider
requested to merge
python-interrupts
into
master
5 years ago
Overview
21
Commits
3
Pipelines
13
Changes
14
Expand
PoC towards
#35
Edited
5 years ago
by
schneider
0
0
Merge request reports
Compare
master
version 12
b6a2a86a
5 years ago
version 11
185b3ef7
5 years ago
version 10
b6a2a86a
5 years ago
version 9
b457c4b6
5 years ago
version 8
2084b1bc
5 years ago
version 7
64d4157f
5 years ago
version 6
3884f023
5 years ago
version 5
04bf54df
5 years ago
version 4
402fa11e
5 years ago
version 3
85ce625a
5 years ago
version 2
b01d5134
5 years ago
version 1
b1f9cb44
5 years ago
master (base)
and
latest version
latest version
b2898dc8
3 commits,
5 years ago
version 12
b6a2a86a
2 commits,
5 years ago
version 11
185b3ef7
3 commits,
5 years ago
version 10
b6a2a86a
2 commits,
5 years ago
version 9
b457c4b6
1 commit,
5 years ago
version 8
2084b1bc
13 commits,
5 years ago
version 7
64d4157f
11 commits,
5 years ago
version 6
3884f023
10 commits,
5 years ago
version 5
04bf54df
9 commits,
5 years ago
version 4
402fa11e
8 commits,
5 years ago
version 3
85ce625a
7 commits,
5 years ago
version 2
b01d5134
2 commits,
5 years ago
version 1
b1f9cb44
1 commit,
5 years ago
14 files
+
257
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
epicardium/api/common.h
+
6
−
0
Options
#pragma once
#include
"epicardium.h"
#include
<stdint.h>
#include
<stdbool.h>
@@ -26,6 +29,9 @@ struct api_call_mem {
/* ID if the ongoing API call */
api_id_t
id
;
/* ID of the current interrupt */
api_int_id_t
int_id
;
/*
* Buffer for arguments/return value. This buffer will be
* *overflown*, because there is guaranteed space behind it.
Loading