forked from paulscherrerinstitute/tosca
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa39e5d
commit dc17997
Showing
4 changed files
with
101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
variable(pevDebug, int) | ||
registrar(pevRegistrar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
void* pev_init(int x); | ||
void* pevx_init(int x); | ||
int pev_csr_rd(int addr); | ||
void pev_csr_wr(int addr, int val); | ||
void pev_csr_set(int addr, int val); | ||
int pev_elb_rd(int addr); | ||
int pev_smon_rd(int addr); | ||
int pev_bmr_read(unsigned int card, unsigned int addr, unsigned int *val, unsigned int count); | ||
float pev_bmr_conv_11bit_u(unsigned short val); | ||
float pev_bmr_conv_11bit_s(unsigned short val); | ||
float pev_bmr_conv_16bit_u(unsigned short val); | ||
int pev_elb_wr(int addr, int val); | ||
void pev_smon_wr(int addr, int val); | ||
int pev_bmr_write(unsigned int card, unsigned int addr, unsigned int val, unsigned int count); |