Displaying 2 results from an estimated 2 matches for "vnum".
Did you mean:
num
2018 May 25
1
MSP430: interrupt vector number out of bounds error in v6/trunk (with patch)
...orted.
To make interrupts work, I had to apply attached patch and then in the
app code, define the symbol manually (name of the symbol does not
matter) and allocate it to the section __interrupt_vector_ for that
vector number that is defined by the linker script shipped by TI MSP
GCC:
#define VNUM(x) x // to drop parenthesis around *_VECTOR values from TI
#define ISR_NAME(vect) CONCAT(ISR_, vect)
#define ISR(vect) \
void ISR_NAME(VNUM vect)(void); \
__attribute__((section("__interrupt_vector_" STR(VNUM vect)), aligned(2))) \
void(*CONCAT(__vector_, V...
2017 Jul 17
0
dbplyr error updating database
...chunk of server code being run is:
kpnew<-src_sqlite("/var/sqlite/KPProfile2")
stmnt<-paste0("update kpquestions set mrisupercat = '",input$supercat,"' , set mricategory = '",input$subcat, "' , where VariableNumber = ",input$vnum, ";")
print(stmnt)
dbSendQuery(kpnew,stmnt)
the print(stmnt) can be read above
sessionInfo() results
R version 3.4.0 (2017-04-21)
Platform: x86_64-redhat-linux-gnu (64-bit)
Running under: Red Hat Enterprise Linux
Matrix products: default
BLAS/LAPACK: /usr/lib64/R/lib/libRb...