带有TI-Nspire的C ++ UART Infite循环

时间:2017-10-14 17:01:17

标签: c++ infinite-loop uart

这是Compilation error due to table in C++

的延续

所以这是我的计划:

#include <os.h>
#include <nspireio/uart.hpp>
#include <nspireio/console.hpp>

int key_already_pressed = 0;
char oldinput[100] = {0};
char voidlist[100] = {0};
/*
void messagel(void) {
    if(messagemode){
    if(isKeyPressed(KEY_NSPIRE_A) && !key_already_pressed) {
        nio_printf("A");
        uart_printf("A");
        //strcat(message,"A");
        key_already_pressed = 1;
    }
    if(isKeyPressed(KEY_NSPIRE_B) && !key_already_pressed) {
        nio_printf("B");
        uart_printf("B");
        //strcat(message,"B");
        key_already_pressed = 1;
    }
        if(isKeyPressed(KEY_NSPIRE_ENTER) && messagemode && !key_already_pressed) {
            messagemode = 0;
        key_already_pressed = 1;
        }
    if(!any_key_pressed())
        key_already_pressed = 0;
    }
}*/


int main(void)
{
   assert_ndless_rev(874);
   //clrscr();
   nio_console csl;
   nio_init(&csl,NIO_MAX_COLS,NIO_MAX_ROWS,0,0,NIO_COLOR_WHITE,NIO_COLOR_BLACK,TRUE);
   nio_set_default(&csl);
   nio_color(&csl,NIO_COLOR_BLACK,NIO_COLOR_WHITE);
   nio_printf("Nspire UART Chat by Samy. Compiled the %s At %s\n",__DATE__,__TIME__);
   nio_color(&csl,NIO_COLOR_WHITE,NIO_COLOR_BLACK);
   nio_puts("Press any ESC to exit and CTRL to send msg...\n");
   while(!isKeyPressed(KEY_NSPIRE_ESC)){
     if(isKeyPressed(KEY_NSPIRE_CTRL) && !key_already_pressed){
    nio_printf(">");
    char input[100] = {0};
        nio_getsn(input,100);
    uart_printf(input);
    key_already_pressed = 1;
     }
     if(!any_key_pressed())
        key_already_pressed = 0;
     if(uart_ready()) {
    char input[100] = {0};
    getline(input,100);
    if(oldinput != input) {
        if(input != voidlist) {
            nio_puts(input);
            strcpy(oldinput,input);
            strcpy(input,voidlist);
        }
    }
     }
   }
   nio_puts("Closing the programm.");
   nio_free(&csl);

   return 0;
}

程序继续在TI屏幕和串行输出上连续发送一个字母。例如,如果我在串行监视器中写lol,它会发送l并且如果我发送一个新字符串,则字母不会改变。

我真的希望这个程序在周末结束时完全正常工作,所以告诉我我做错了什么?

PS:我是法国人

2 个答案:

答案 0 :(得分:0)

让我们看一下代码的这一部分

if(uart_ready()) {
    char input[100] = {0};
    getline(input,100);
    if(oldinput != input) {
       if(input != voidlist) {
           nio_puts(input);
           strcpy(oldinput,input);
           strcpy(input,voidlist);
       }
   }
 }

您正在检查UART是否准备就绪,如果是这样,您要声明一个包含100个元素的字符。到这里很好。但你在做什么呢:

 if(oldinput != input) {

将数组'oldinput'的地址与先前声明的'input'数组的地址进行比较。我假设你真正想要的是比较这两个char数组的内容,因为'oldinput'和'input'总是不相等。

你真正想要的是:

if(strcmp(oldinput,input) != 0){

这比较了这些字段的实际内容。但请注意,此函数假定字符串末尾有一个空终止符!下一个'如果'也是如此。

尝试解决此问题,它可能会帮助您解决问题。

Strings in C

PS:我是德国人,但谁关心XP

答案 1 :(得分:0)

在github上解决问题之后,我将所有内容都设置为链接:GitHub Issue