При компиляции проекта в Android IDE возникла ошибка
LampCore:20: error: stray ‘\302’ in program
Код, который вызывал ошибку не был какой то особенный, была объявлена простенькая структура с полями:
typedef struct {
char mode[20];
byte brightness;
} Config;
В моем случае ошибка возникла из за того, что я случайно в названии структуры Config написал не латинский символ C. Самое интересное что с виду все кажется в порядке, а на самом деле это не так, и возникает ошибка «stray ‘\320’ in program».
Так что решение — использовать только латинские символы (это не касается комментариев).
Также могут возникать другие ошибки такого же рода, только с другим кодом
Скорее всего что следующие ошибки:
error stray 1 in program
error stray 2 in program
error stray 200 in program
error stray 201 in program
error stray 213 in program
error stray 223 in program
error stray 226 in program
error stray 227 in program
error stray 240 in program
error stray 253 in program
error stray 273 in program
error stray 302 in program
error stray 320 in program
error stray 321 in program
error stray 340 in program
error stray 342 in program
error stray 357 in program
error stray 361 in program
тоже связанны с этой проблемой, если это не так, пожалуйста отпишитесь в комментариях.
Offline
Зарегистрирован: 19.04.2016
Чего я не понимаю ? В скетче нет ничего кроме шаблона и подключаемой библиотеки
#include <DHT.h>
вот это при компиляции
Arduino: 1.6.9 (Windows XP), Плата:»Arduino/Genuino Uno»
In file included from C:\Documents and Settings\admin\Мои документы\Arduino\libraries\DHT_sensor_library\DHT_U.cpp:22:0:
C:\Documents and Settings\admin\Мои документы\Arduino\libraries\DHT_sensor_library\DHT_U.h:25:29: fatal error: Adafruit_Sensor.h: No such file or directory
#include <Adafruit_Sensor.h>
^
compilation terminated.
exit status 1
Ошибка компиляции для платы Arduino/Genuino Uno
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 |
#include <limits> #include <iostream> #include <iomanip> #include <cstdlib> #include <string> #include <exception> #include <stdexcept> #include <map> #include <cstring> #include <new> using namespace std; #pragma warning(disable:4290) // Ошибка - аккаунт не существует class account_not_exist : public logic_error { public: account_not_exist() : logic_error("Аккаунт не существует") { }; }; // Валюты необходимые для задачи enum currencies { RUR, USD, EUR }; // Класс-деньги class money { public: // Конструкторы explicit money(double summa = 0.0, currencies currency = RUR) throw (invalid_argument); money(unsigned int int_part, unsigned char fract_part, currencies currency = RUR); // Тип валюты currencies getCurrency(); void setCurrency(currencies currency); private: // Целая часть суммы unsigned int _int_part; // Дробная часть суммы(копейки,центы,и т.д.) unsigned char _fract_part; // Тип валюты currencies _currency; unsigned long long smallChange() const; friend money operator+(const money& left, const money& right); friend money operator-(const money& left, const money& right) throw (invalid_argument); friend money operator*(const money& left, double right); friend money operator*(double left, const money& right); friend bool operator<(const money& left, const money& right); friend bool operator&g t;(const money& left, const money& right); friend wostream & operator<<(wostream& stream, const money& right); friend wistream & operator>>(wistream& stream, money& right); friend class exchanger; }; // Обменник class exchanger { public: // Меняет одну валюту на другую static money exchange(const money& summa, currencies currency); private: // Курсы обмена static map<currencies, double> _rates; }; // Инициализируем статический член нашего обменного класса typedef pair<currencies, double> rate_pair; rate_pair rates_arr[3] = {rate_pair(RUR, 1.0), rate_pair(USD, 30.1851), rate_pair(EUR, 43.4605)}; map<currencies, double> exchanger::_rates(rates_arr, rates_arr + sizeof (rates_arr) / sizeof (rate_pair)); // Для вывода типа валюты будем использовать следующие имена typedef pair<currencies, wstring> currency_name_pair; currency_name_pair cur rencies_names_arr[3] = {currency_name_pair(RUR, L"RUR"), currency_name_pair(USD, L"USD"), currency_name_pair(EUR, L"EUR")}; map<currencies, wstring> currency_names(currencies_names_arr, currencies_names_arr + sizeof (currencies_names_arr) / sizeof (currency_name_pair)); // Аккаунт class account { public: typedef unsigned int acc_num_type; // Конструктор account(const wstring& surname, acc_num_type account_num, double percent = 0.0, const money& cash = money(0.0)) throw (invalid_argument); // Меняет владельца void setOwner(const wstring& surname); // Возвращает владельца const wstring& getOwner() const; // Снимает деньги bool withdrawMoney(const money& summa); // Добавляет деньги void depositMoney(const money& summa); // Начисляет процент void thatInterest(); // Обмен валюты void exchangeTo(currencies currency); // Сумма money getCash() const; private: // Фамилия wstring _surname; // Номер счета acc_num_type _account_num; // Процент double _percent; // Сумма на счету money _cash; friend wostream & operator<<(wostream& stream, const account& right); }; // Выбор пользователя в меню enum user_choice { CREATE, CHANGE_OWNER, WITHDRAW_MONEY, DEPOSIT_MONEY, THAT_INTEREST, EXCHANGE_TO_RUR, EXCHANGE_TO_USD, EXCHANGE_TO_EUR, PRINT, EXIT }; user_choice menu(); void createAccount(account*&); void changeOwner(account*); void withdrawMoney(account*); void depositMoney(account*); void thatInterest(account*); void exchangeTo(account*, currencies); void printAccount(account*); wostream & operator<<(wostream& stream, const exception& right) { #pragma warning(disable:4996) const size_t len = mbstowcs(0,right.what(),0) + 1; try { wchar_t *buffer = new wchar_t[len]; mbstowcs(buffer, right.what(), len); stream<< buffer; delete[] buffer; } catch (bad_alloc&) { } return stream; } int main() { locale::global(locale("")); // Аккаунт account *acc = 0; bool is_exit = false; while (!is_exit) { try { switch (menu()) { case CREATE: createAccount(acc); break; case CHANGE_OWNER: changeOwner(acc); break; case WITHDRAW_MONEY: withdrawMoney(acc); break; case DEPOSIT_MONEY: depositMoney(acc); break; case THAT_INTEREST: thatInterest(acc); break; case EXCHANGE_TO_RUR: exchangeTo(acc, RUR); break; case EXCHANGE_TO_USD: exchangeTo(acc, USD); break; case EXCHANGE_TO_EUR: exchangeTo(acc, EUR); break; case PRINT: printAccount(acc); break; case EXIT: is_exit = true; break; } } catch (exception& ex) { wcout << ex << endl; } } if (acc) { delete acc; acc = 0; wcout << L"Счет уничтожен" << endl; } return 0; } wostream& line(wostream& stream) { stream << L"----------------------------------------------" << endl; return stream; } // Меню user_choice menu() { while (true) { wcout << line << L"Меню:" << endl << L"1 - Создать счет" << endl << L"2 - Сменить владельца" << endl << L"3 - Снять деньги" << endl << L"4 - Положить деньги:" << endl << L"5 - Начислить процент" << endl << L"6 - Обменять на RUR" << endl< br> << L"7 - Обменять на USD" << endl << L"8 - Обменять на EUR" << endl << L"9 - Напечатать информацию об аккаунте" << endl << L"0 - Выход" << endl << L"Сделайте свой выбор:"; wchar_t choice = wcin.get(); wcin.ignore(numeric_limits<streamsize>::max(), L'\n'); wcout << line; switch (choice) { case L'0': return EXIT; case L'1': return CREATE; case L'2': return CHANGE_OWNER; case L'3': return WITHDRAW_MONEY; case L'4': return DEPOSIT_MONEY; case L'5': return THAT_INTEREST; case L'6': return EXCHANGE_TO_RUR; case L'7': return EXCHANGE_TO_USD; case L'8': return EXCHANGE_TO_EUR; case L'9': return PRINT; default: wcout << L"Будьте внимательней!" << endl; } } } template<class T> T input(wstring msg) { while (true) { wcout << msg; T result; wcin >> result; if (wcin.fail()) { wcout << L"Ошибочный ввод!" << endl; wcin.clear(); wcin.ignore(numeric_limits<streamsize>::max(), L'\n'); } else { wcin.ignore(numeric_limits<streamsize>::max(), L'\n'); return result; } } } // Создает аккаунт void createAccount(account*& acc) { wstring surname; wcout << L"Введите фамилию владельца счета:"; getline(wcin, surname); account::acc_num_type accountNum = input<account::acc_num_type > (L"Номер счета:"); double percent = input<double>(L"Процент:"); money summa = input<money > (L"Сумма денег на счету:"); try { account* new_acc = new account(surname, accountNum, percent, summa); if (acc) { delete acc; acc = 0; wcout << L"Старый аккаунт удален" << endl; } acc = new_acc; } catch (exception& ex) { wcout << ex << endl; } } // Меняет владельца void changeOwner(account* acc) { if (acc) { wstring surname; wcout << L"Введите фамилию нового владельца счета:"; getline(wcin, surname); acc->setOwner(surname); wcout << *acc << endl; } else { throw account_not_exist(); } } // Снимает деньги void withdrawMoney(account* acc) { if (acc) { money summa = input<money > (L"Какую сумму желаете снять?:"); summa.setCurrency(acc->getCash().getCurrency()); if (acc->withdrawMoney(summa)) { wcout << L"Операция прошла успешно" << endl << *acc << endl; } else { wcout << L"Невозможно снять требуемую сумму" << endl; } } else { throw account_not_exist(); } } // Ложит деньги на счет void depositMoney(account* acc) { if (acc) { money summa = input<money > (L"Какую сумму желаете положить?:"); summa.setCurrency(acc->getCash().getCurrency()); acc->depositMoney(summa); wcout << *acc << endl; } else { throw account_not_exist(); } } // Начисляет процент void thatInterest(account* acc) { if (acc) { acc->thatInterest(); wcout << *acc << endl; } else { throw account_not_exist(); } } // Обмен валют void exchangeTo(account* acc, currencies currency) { if (acc) { acc->exchangeTo(currency); wcout << *acc << endl; } else { throw account_not_exist(); } } // Вывод информации void printAccount(account* acc) { if (acc) { wcout << *acc << endl; } else { throw account_not_exist(); } } #pragma region Все, относящееся к class money money::money(double summa, currencies currency) throw (invalid_argument) { if (summa < 0) { throw invalid_argument("Сумма не может быть отрицательной"); } _int_part = static_cast<unsigned int> (summa); _fract_part = static_cast<unsigned char> ((summa - _int_part)*100); _currency = currency; } money::money(unsigned int int_part, unsigned char fract_part, currencies currency) { if (fract_part > 99) { throw invalid_argument("Количество мелочи не может быть больше 99"); } _int_part = int_part; _fract_part = fract_part; _currency = currency; } currencies money::getCurrency() { return _currency; } void money::setCurrency(currencies currency) { _currency = currency ; } inline unsigned long long money::smallChange() const { return _int_part * 100ULL + _fract_part; } // Оператор сложения money operator+(const money& left, const money& right) { if (left._currency != right._currency) { throw invalid_argument("Тип валюты не совпадает"); } unsigned int fract_part = left._fract_part + right._fract_part; return money(left._int_part + right._int_part + fract_part / 100, fract_part % 100,left._currency); } // Оператор вычитания money operator-(const money& left, const money& right) throw (invalid_argument) { if (left < right) { throw invalid_argument("Сумма слева не может быть меньше суммы справа. Результат операции не может быть отрицательным"); } if (left._currency != right._currency) { throw invalid_argument("Тип валюты не совпадает"); } unsigned long long resultSum = (left._int_part - right._int_part) * 100ULL + left._fract_part - right._fract_part; return money(static_cast<unsigned int> (resultSum / 100), resultSum % 100,left._currency); } // Оператор умножения(необходим для взятия процента) money operator*(const money& left, double right) { unsigned long long resultSum = static_cast<unsigned long long> ((left._int_part * 100 + left._fract_part) * right); return money(static_cast<unsigned int> (resultSum / 100), resultSum % 100, left._currency); } inline money operator*(double left, const money& right) { return right*left; } // Операторы сравнения bool operator<(const money& left, const money& right) { return left.smallChange() < right.smallChange(); } bool operator>(const money& left, const money& right) { return left.smallChange() > right.smallChange(); } / / Операторы ввода-вывода wostream & operator<<(wostream& stream, const money& right) { stream << right._int_part << L"," << setw(2) << setfill(L'0') << right._fract_part << L'(' << currency_names[right._currency] << L')'; return stream; } wistream & operator>>(wistream& stream, money& right) { double sum; stream >> sum; try { right = money(sum); } catch (exception&) { stream.setstate(ios::badbit); } return stream; } #pragma endregion Все, относящееся к class money money exchanger::exchange(const money& summa, currencies currency) { double rate = _rates[summa._currency] / _rates[currency]; money result = summa*rate; result._currency = currency; return result; } #pragma region Все, относящееся к class account account::account(const wstring& surname, acc_num_type account_num, double percent, const money& cash) throw (invalid_argument): _surname(surname), _account_num(account_num), _cash(cash) { if (percent < 0) { throw invalid_argument("Процент не может быть отрицательным"); } _percent = percent; } void account::setOwner(const wstring& surname) { _surname = surname; } const wstring& account::getOwner() const { return _surname; } bool account::withdrawMoney(const money& summa) { try { _cash = _cash - summa; return true; } catch (exception&) { return false; } } void account::depositMoney(const money& summa) { _cash = _cash + summa; } void account::thatInterest() { _cash = _cash * (1.0 + _percent / 100.0); } void account::exchangeTo(currencies currency) { _cash = exchanger::exchange(_cash, currency); } money account::getCash() const { return _cash; } wostream & operator<<(wostream& stream, const account& right) { stream << L"Информация об аккаунте:" << endl << L"Владелец:" << right._surname << endl << L"Номер счета:" << right._account_num << endl << L"Процент:" << fixed << setprecision(2) << right._percent << endl << L"Сумма:" << right._cash; return stream; } #pragma endregion Все, относящееся к class account |
Но не копилится. Ошибка
File name: D:\lcd\kon’ki.c
Generated by: Flowcode v4.3.9.65
Date: Friday, November 23, 2012 14:54:47
Licence: Free version
***For users exUSSR ***
Не для коммерческого использования
http://www.matrixmultimedia.com
Launching the compiler…
C:\N\Tools\MX_bats\avra.bat attiny13 «D:\lcd\kon’ki.elf» «D:\lcd\kon’ki.c» «D:\lcd\kon’ki.lst»
D:\lcd>»C:\N\Tools\MX_bats\..\bin\avr-gcc.exe» -mmcu=attiny13 -Os -funsigned-char -o «D:\lcd\kon’ki.elf» «D:\lcd\kon’ki.c» -lm
..
D:\lcd\kon’ki.c: In function ‘main’:
D:\lcd\kon’ki.c:290: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:290: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:290: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:290: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:290: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:290: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:290: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:290: error: ‘FCC_’ undeclared (first use in this function)
D:\lcd\kon’ki.c:290: error: (Each undeclared identifier is reported only once
D:\lcd\kon’ki.c:290: error: for each function it appears in.)
D:\lcd\kon’ki.c:290: error: expected ‘;’ before ‘_A’
D:\lcd\kon’ki.c:333: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:333: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:333: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:333: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:333: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:333: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:333: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:333: error: expected ‘;’ before ‘_A’
D:\lcd\kon’ki.c:342: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:342: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:342: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:342: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:342: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:342: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:342: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:342: error: expected ‘;’ before ‘_B’
D:\lcd\kon’ki.c:385: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:385: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:385: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:385: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:385: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:385: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:385: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:385: error: expected ‘;’ before ‘_B’
D:\lcd\kon’ki.c:394: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:394: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:394: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:394: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:394: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:394: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:394: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:394: error: expected ‘;’ before ‘_C’
D:\lcd\kon’ki.c:437: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:437: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:437: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:437: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:437: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:437: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:437: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:437: error: expected ‘;’ before ‘_C’
D:\lcd\kon’ki.c:446: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:446: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:446: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:446: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:446: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:446: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:446: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:446: error: expected ‘;’ before ‘_D’
D:\lcd\kon’ki.c:489: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:489: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:489: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:489: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:489: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:489: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:489: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:489: error: expected ‘;’ before ‘_D’
D:\lcd\kon’ki.c:498: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:498: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:498: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:498: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:498: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:498: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:498: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:498: error: expected ‘;’ before ‘_E’
D:\lcd\kon’ki.c:541: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:541: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:541: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:541: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:541: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:541: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:541: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:541: error: expected ‘;’ before ‘_E’
D:\lcd\kon’ki.c:550: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:550: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:550: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:550: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:550: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:550: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:550: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:550: error: expected ‘;’ before ‘_F’
D:\lcd\kon’ki.c:593: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:593: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:593: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:593: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:593: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:593: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:593: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:593: error: expected ‘;’ before ‘_F’
D:\lcd\kon’ki.c:602: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:602: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:602: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:602: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:602: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:602: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:602: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:602: error: expected ‘;’ before ‘_G’
D:\lcd\kon’ki.c:645: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:645: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:645: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:645: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:645: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:645: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:645: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:645: error: expected ‘;’ before ‘_G’
D:\lcd\kon’ki.c:654: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:654: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:654: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:654: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:654: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:654: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:654: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:654: error: expected ‘;’ before ‘_H’
D:\lcd\kon’ki.c:697: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:697: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:697: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:697: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:697: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:697: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:697: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:697: error: expected ‘;’ before ‘_H’
D:\lcd\kon’ki.c:706: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:706: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:706: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:706: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:706: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:706: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:706: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:706: error: expected ‘;’ before ‘_I’
D:\lcd\kon’ki.c:783: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:783: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:783: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:783: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:783: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:783: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:783: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:783: error: expected ‘;’ before ‘_J’
D:\lcd\kon’ki.c:797: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:797: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:797: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:797: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:797: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:797: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:797: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:797: error: expected ‘;’ before ‘_J’
D:\lcd\kon’ki.c:808: error: stray ‘\303’ in program
D:\lcd\kon’ki.c:808: error: stray ‘\353’ in program
D:\lcd\kon’ki.c:808: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:808: error: stray ‘\342’ in program
D:\lcd\kon’ki.c:808: error: stray ‘\355’ in program
D:\lcd\kon’ki.c:808: error: stray ‘\340’ in program
D:\lcd\kon’ki.c:808: error: stray ‘\377’ in program
D:\lcd\kon’ki.c:808: error: expected ‘;’ before ‘_I’
D:\lcd\kon’ki.c:333: error: label ‘FCC_’ used but not defined
Error returned from [avr-gcc.exe]
Return code = 1
Flowcode не смог откомпилировать код C блок-схемы из-за следующих ошибок:
Если Ваша блок-схема содержит код C, пожалуйста проверьте это тщательно. Если Ваша блок-схема не содержит C-кода, или Вы полностью проверили код, обратитесь в службу Технической поддержки.
FINISHED
View previous topic :: View next topic | |||||||||||||||||||||||||
Author | Message | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
ian.au Guru Joined: 07 Apr 2011 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
Buffoon Veteran Joined: 17 Jun 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
ian.au Guru Joined: 07 Apr 2011 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
Buffoon Veteran Joined: 17 Jun 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
ian.au Guru Joined: 07 Apr 2011 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
Buffoon Veteran Joined: 17 Jun 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
ian.au Guru Joined: 07 Apr 2011 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
ian.au Guru Joined: 07 Apr 2011 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
Buffoon Veteran Joined: 17 Jun 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
3psus n00b Joined: 29 Jul 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
Buffoon Veteran Joined: 17 Jun 2015 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
ian.au Guru Joined: 07 Apr 2011 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
NeddySeagoon Administrator Joined: 05 Jul 2003 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
NeddySeagoon Administrator Joined: 05 Jul 2003 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
ian.au Guru Joined: 07 Apr 2011 |
|
||||||||||||||||||||||||
Back to top |
|
||||||||||||||||||||||||
|
You cannot post new topics in this forum |