| | |
| | | #include "scpi/parser.h" |
| | | #include "scpi/ieee488.h" |
| | | #include "scpi/error.h" |
| | | #include "scpi/constants.h" |
| | | |
| | | #include <stdio.h> |
| | | |
| | | static const scpi_reg_info_t scpi_reg_details[SCPI_REG_COUNT] = { |
| | |
| | | * @param context |
| | | * @return |
| | | */ |
| | | scpi_result_t SCPI_CoreEse(scpi_t * context) { |
| | | scpi_result_t SCPI_CoreEse(scpi_t * context) |
| | | { |
| | | int32_t new_ESE; |
| | | if (SCPI_ParamInt32(context, &new_ESE, TRUE)) { |
| | | SCPI_RegSet(context, SCPI_REG_ESE, (scpi_reg_val_t) new_ESE); |
| | |
| | | return SCPI_RES_OK; |
| | | } |
| | | |
| | | scpi_result_t SCPI_NanCy(scpi_t * context) |
| | | { |
| | | |
| | | return SCPI_RES_OK; |
| | | } |
| | | scpi_result_t SCPICount(scpi_t * context) |
| | | { |
| | | return SCPI_RES_OK; |
| | | |
| | | |
| | | } |
| | | |