Studentenversion des ESY6/A Praktikums "signal_processing".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

io.h 238B

1234567891011121314
  1. #pragma once
  2. #include <inttypes.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. void IOWR( uint32_t base, uint32_t REG_CONFIG_OFFSET, uint32_t value );
  7. uint32_t IORD( uint32_t base, uint32_t REG_CONFIG_OFFSET );
  8. #ifdef __cplusplus
  9. }
  10. #endif