Ir ao conteúdo

Compilando para Teensy 3.0 no Windows utilizando Makefile

Boa tarde,

Se você não quer utilizar a Arduino IDE (Teensy IDE?) para programar e enviar seus códigos para o Teensy 3.0 você pode utilizar o Makefile.

A última versão da IDE por enquanto você consegue no Forum do PJRC . Como ele diz, existe um exemplo de Makefile na pasta: “arduino-1.0.3\hardware/teensy/cores/teensy3” porém para utiliza-lo você precisa fazer alguns passos como adicionar o “arduino-1.0.3\hardware\tools\arm-none-eabi\bin” ao seu PATH para que possa utilizar os executaveis desta pasta tranquilamente. Para isso abra o seu Prompt de Comando: Iniciar – Executar – CMD

E em seguida insira o seguinte comando:

PATH = %PATH%;C:\CAMINHO_PARA_O_ARDUINO\arduino-1.0.3\hardware\tools\arm-none-eabi\bin

[Se você não quer entender as modificações que eu realizei va para o final da publicação]

Para garantir que não estragaria o arquivo, fiz uma copia completa do diretório. Em seguida ao executar o

cs-make.exe

Recebia a seguinte mensagem de erro:

C:\CAMINHO_PARA_O_ARDUINO\arduino-1.0.3\Projects\Example_not_working>cs-make.exe
C:/Users/X-warrior/Desktop/tools/arm-none-eabi/bin/arm-none-eabi-gcc -Wall -g -Os -mcpu=cortex-m4 -mthumb -nostdlib -MMD -DF_CPU=48000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I. -c -o analog.o analog.c
process_begin: CreateProcess(NULL, C:/Users/X-warrior/Desktop/tools/arm-none-eabi/bin/arm-none-eabi-gcc -Wall -g -Os -mcpu=cortex-m4 -mthumb -nostdlib -MMD -DF_CPU=48000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I. -c -o analog.o analog.c, …) failed.
make (e=2): The system cannot find the file specified.
cs-make.exe: *** [analog.o] Error 2

Verificando o Makefile decidi alterar as configurações das váriaveis para caminho completo já que eu fiz uma copia do teeensy/core.
TOOLSPATH = C:\CAMINHO_PARA_O_ARDUINO\arduino-1.0.3\hardware\tools
LIBRARYPATH = Deixei como estava
COMPILERPATH = C:\CAMINHO_PARA_O_ARDUINO\arduino-1.0.3\hardware\tools\arm-none-eabi\bin

O erro continuou o mesmo, continuando a entender o código percebi os “abspath” e pensei que poderia estar dando problema por eu estar usando caminhos absolutos então removi todos os “$(abspath” lembrando que o mesmo possui um parêntesis que fecha o comando. Então por exemplo:

$(abspath $(COMPILERPATH)) ficará $(COMPILERPATH)

Tentando compilar novamente com cs-make, iniciou a compilar mas no final aconteceu o seguinte erro:

C:\Users\X-warrior\Desktop\arduino-1.0.3\hardware\tools\arm-none-eabi\bin/arm-none-eabi-objcopy -O ihex -R .eeprom main.elf main.hex
C:\Users\X-warrior\Desktop\arduino-1.0.3\hardware\tools/teensy_post_compile -file=main -path= -tools=C:\Users\X-warrior\Desktop\arduino-1.0.3\hardware\tools
Opening Teensy Loader…
Teensy Loader could not find the file main
cs-make.exe: *** [main.hex] Error 1

Analisando o arquivo encontrei: “path=$(shell pwd)” e me pareceu que pwd não era um comando válido de shell em windows. Testei no console, e não era. Então alterei para “path=$(shell echo %cd%)”. Antes de compilar novamente decidi tentar limpar os arquivos que já foram gerados com cs-make clean

O erro encontrado foi:

C:\Users\X-warrior\Desktop\arduino-1.0.3\Projects\Example_not_working>cs-make.exe clean
rm -f *.o *.d main.elf main.hex
process_begin: CreateProcess(NULL, rm -f *.o *.d main.elf main.hex, …) failed.
make (e=2): The system cannot find the file specified.
cs-make.exe: *** [clean] Error 2

E me pareceu que ele estava chamando rm -f no windows o que também não é um comando válido. Alterei o comando rf para:

del *.o
del *.d
del $(TARGET).elf
del $(TARGET).hex

Com isso consegui limpar os arquivos. E tentei compilar novamente e funcionou! Realizei uns testes alterando o main.cpp e estava sendo compilado e enviado ao meu Teensy 3.0 como deveria ser. De qualquer forma trabalhar com todos aqueles arquivos e os meus juntos seria um tanto quanto trabalhoso, então copiei todos os arquivos com exceção do Makefile e do main.cpp para teensy/ dentro do meu projeto. Assim eu conseguiria compilar com o Makefile sem ter todos os arquivos em uma confusão. Alterei os CPP e C files para:

C_FILES := $(wildcard *.c) \
$(wildcard $(addprefix teensy/, *.c)) \
$(wildcard $(addprefix teensy/util, *.c)) \
$(wildcard $(addprefix teensy/avr, *.c))
CPP_FILES := $(wildcard *.cpp) \
$(wildcard $(addprefix teensy/, *.cpp)) \
$(wildcard $(addprefix teensy/util, *.cpp)) \
$(wildcard $(addprefix teensy/avr, *.cpp))
OBJS := $(C_FILES:.c=.o) $(CPP_FILES:.cpp=.o)

As configurações do linker para:

LDFLAGS = -Os -Wl,–gc-sections -mcpu=cortex-m4 -mthumb -Tteensy/mk20dx128.ld

E para ficar consistente:

$(TARGET).elf: $(OBJS) teensy/mk20dx128.ld
$(CC) $(LDFLAGS) -o $@ $(OBJS)

E encontrei o seguinte erro:

teensy/keylayouts.c:1: fatal error: avr/pgmspace.h: No such file or directory
compilation terminated.
cs-make: *** [teensy/keylayouts.o] Error 1

Alterei as CPPFLAGS para:

CPPFLAGS = -Wall -g -Os -mcpu=cortex-m4 -mthumb -nostdlib -MMD $(OPTIONS) -I. -Iteensy/

E também lembrei que o clean deveria ser alterado para:

clean:
del *.o
del *.d
del $(TARGET).elf
del $(TARGET).hex
del $(CURRENT_PATH)\teensy\*.o
del $(CURRENT_PATH)\teensy\*.d

E adicionei:

CURRENT_PATH=$(shell echo %cd%)

Logo após as configurações que não devem ser alteradas pelo usuário. Com isso consegui utilizar o Makefile no Windows 7 para compilar e fazer upload para o Teensy 3.0 e mantendo os arquivos separados.

Resumo:
Você deve editar as váriaveis TOOLSPATH , COMPILERPATH e LIBRARYPATH para o seu caminho COMPLETO.
Em seguida crie uma pasta para o seu projeto “Meu_Projeto”
Crie uma pasta dentro dela chamada “teensy” (Meu_Projeto/teensy/)
Copie “arduino-1.0.3\hardware/teensy/cores/teensy3/” para “Meu_Projeto/teensy/” (os sub-diretórios também, mas o Makefile não)
Adicione o Makefile que você encontra no final deste post em “Meu_Projeto”
Copie o arquivo “Meu_Projeto/teensy/main.cpp” para o “Meu_Projeto/main.cpp”
Programe apartir do main.cpp
Compile e faça Upload com cs-make

Makefile para Teensy no Windows

Espero que seja útil,
Matheus

Publicado emCcppTeensywindows

4.094 Comentários

  1. FrankRap FrankRap

    Этот краткий обзор предлагает сжатую информацию из области медицины, включая ключевые факты и последние новости. Мы стремимся сделать информацию доступной и понятной для широкой аудитории, что позволит читателям оставаться в курсе актуальных событий в здравоохранении.
    Рассмотреть проблему всесторонне – медицинский центр наркологии

  2. Il gioco unisce l’intrattenimento di un game show televisivo all’emozione del casinò dal vivo.
    crazytimes https://buyandsellhair.com/author/harriettlbj/
    Ogni bonus offre meccaniche diverse e possibilità di vincita con moltiplicatori elevati.
    La meccanica intuitiva permette a chiunque di divertirsi senza esperienza pregressa.
    Giocare con consapevolezza e definire un budget aiuta a vivere l’esperienza in sicurezza.

  3. A piece that built up gradually rather than front loading its main points, and a look at fitnessnexus maintained the same gradual structure, content that trusts the reader to reach conclusions through accumulating reasoning is more persuasive than content that announces conclusions and then defends them and this site uses the persuasive approach.

  4. A quiet piece that did not try to compete on volume, and a look at urbanlatino maintained that selective approach, sites that publish less but better are increasingly rare in an environment that rewards volume and this one has clearly chosen quality cadence over quantity which is a brave editorial decision in current conditions.

  5. Pass this along to anyone you know dealing with similar questions, the answers here are clear, and a stop at actionwithsignal adds even more useful material, this is the kind of resource that deserves to circulate widely rather than getting lost in the constant churn of new content online that buries good work daily.

  6. EugeneGaing EugeneGaing

    В этой статье мы подробно рассматриваем проверенные методы борьбы с зависимостями, включая психотерапию, медикаментозное лечение и поддержку со стороны общества. Мы акцентируем внимание на важности комплексного подхода и возможности успешного восстановления для людей, столкнувшихся с этой проблемой.
    Полезно знать – прокапать от алкоголя на дому

  7. Probably this is one of the better quiet successes on the open web at the moment, and a look at darkvoyager reinforced that quiet success quality, sites that are doing well without making a noise about doing well are the sites I most respect and this one has clearly chosen the quiet success path consistently throughout.

  8. Speaking carefully because I do not want to overstate things this site is genuinely above average across multiple measurements, and a stop at intentionalprogression continued the above average performance, the calibration of judgement against potential overstatement is something I take seriously and this site clears the higher bar even after that calibration applies.

  9. Worth recognising that the post handled a familiar topic without reaching for any of the obvious hot takes, and a stop at clarityshift continued that fresh treatment, sites that find new angles on subjects others have exhausted are sites worth following carefully and this one has clearly developed that exploratory instinct through patient practice.

  10. http://www.factorytapestry.com is a Trusted Online Wall Hanging Tapestry Store. We are selling online art and decor since 2008, our digital business journey started in Australia. We sell 100 made-to-order quality printed soft fabric tapestry which are just too perfect for decor and gifting. We offer Up-to 50 percent OFF Storewide Sale across all the Wall Hanging Tapestries. We provide Fast Shipping USA, CAN, UK, EUR, AUS, NZ, ASIA and Worldwide Delivery across 100+ countries.

  11. Picked up something useful for a side project, and a look at visualharbor added another piece I will incorporate, content that connects to specific projects I am working on is content with practical utility and the practical utility of this site is showing up across multiple posts I have read in the last hour or so.

  12. Considered alongside other sources I have been reading this one consistently rises to the top, and a stop at uniquevoyager maintained that top ranking, the informal ongoing comparison between sources is something I do whenever reading on a topic and this site keeps coming out near the top of those comparisons over many sessions.

  13. Skipped the related products section because there was none, and a stop at actionpathway also lacked any aggressive monetisation, content that is not constantly trying to convert me into a customer or subscriber is content that has confidence in its own value and that confidence shows up as a different reading experience.

  14. A piece that took its time without dragging, and a look at growthwithforwardmotion kept the same patient pace, the difference between unhurried and slow is a fine editorial distinction and this site has clearly found the unhurried side without slipping into the slow side which would have lost me as a reader quickly otherwise.

  15. Glad the writer did not feel the need to argue with imaginary critics in the post itself, and a stop at forwardplanninglab kept the same focused approach going, defensive writing wastes the reader time and confidence on positions that did not need defending and this post has clearly avoided that common failure.

  16. Now planning to recommend this site in a context where my recommendations are taken seriously, and a stop at vibrantdaily confirmed I should make that recommendation soon, the small but real act of recommending content into spaces where my taste matters is something I take seriously and this site is worth the recommendation.

  17. Reading this in segments because the day was busy, and the post survived the fragmented attention well, and a stop at latinovista held up similarly under interrupted reading, content that can withstand modern distracted reading patterns rather than requiring a perfect block of focused time is increasingly the kind I prefer.

  18. Quietly enthusiastic about this site after the past few hours of reading, and a stop at nexoravision extended that enthusiasm, the calibration of enthusiasm to evidence is something I try to maintain and this site has earned a calibrated quiet enthusiasm rather than the loud excitement that usually fades within a day or two of finding something.

  19. Felt the writer respected the topic without being precious about it, and a look at vibrantstage continued that respectful but unfussy treatment, finding the right register for serious topics is hard and this site has clearly figured out how to take the topic seriously while still being readable for casual visitors regularly.

  20. starz888
    تضم 888starz في قسم الألعاب مكتبة واسعة تضم ألعاب طاولة وألعاب مهارية وترفيهية متعددة.

  21. A piece that did not try to be timeless and ended up reading as durable anyway, and a look at claritybeforevelocity extended that durable feel, content that stays useful past its publication date without straining for permanence is content that ages well and this site has the kind of evergreen quality that I value highly today.

  22. Игры отсортированы по категориям и популярности, что облегчает поиск нужного развлечения.

    В ассортименте 888starz представлены слот-машины, карточные игры и live-румы с реальными дилерами.
    888starz link https://888-uz1.com

  23. ٨٨٨ ستارز هي منصة مراهنات عبر الإنترنت تقدم ألعاب كازينو وخيارات رهان متنوعة للمستخدمين العرب.
    تعرف 888starz بكونها وجهة مفضلة لعشاق الألعاب الإلكترونية.

    القسم الثاني:
    تضيف المنصة ألعابًا جديدة بانتظام لتبقي تجربة المستخدم متجددة.

    القسم الثالث:
    يدعم فريق خدمة العملاء بالمنصة العملاء على مدار الساعة لمعالجة الاستفسارات.

    القسم الرابع:
    تقدم 888starz عروضًا ترويجية ومكافآت لزيادة تفاعل المستخدمين.

  24. 888starz — это современная онлайн-платформа для развлечений и ставок, сочетающая широкий выбор игр и удобный интерфейс.
    888starz скачать ios https://888starz-uzb6.com/apk/

  25. If patience for careful reading is rare these days finding sites that reward it is rarer still, and a stop at focusacceleration extended that rare reward, the diminishing returns on shallow content reading have made me more selective about where to spend reading time and this site is meeting the higher selectivity bar consistently.

  26. جرب الحظ الآن على 888starz للفوز بجوائز مثيرة ومباشرة.
    المستخدمون يكتشفون خيارات لعب فورية وعروضًا جذابة.

    الفقرة الثانية:
    حماية الخصوصية والأمان تمثل أولوية لدى 888starz لحفظ بيانات الأعضاء.

  27. Worth observing that the post landed without needing a flashy headline to hook attention, and a stop at radiantderma did the same, content that earns engagement through substance rather than packaging is the kind I trust more deeply and this site has clearly chosen substance as the primary lever for reader engagement throughout.

  28. Billystemn Billystemn

    В этой статье рассматриваются способы преодоления зависимости и успешные истории людей, которые справились с этой проблемой. Мы обсудим важность поддержки со стороны близких и профессионалов, а также стратегии, которые могут помочь в процессе выздоровления. Научитесь первоочередным шагам к новой жизни.
    Секреты успеха внутри – наркология вывод из запоя

  29. Now setting up a small reminder to revisit the site on a slow day, and a stop at mysticvoyage confirmed the reminder was a good idea, planning return visits is a small organisational act that signals trust in ongoing quality and this site has earned that planned return through consistent performance across the pieces I have read so far.

  30. Even across multiple posts the writers voice has remained consistent in a way I appreciate, and a stop at facthorizon continued that voice, sites that maintain editorial consistency across many pieces have something most sites lack and this one has clearly worked out how to keep its voice steady across what reads as a growing archive.

  31. WilliamSlism WilliamSlism

    В этой статье мы подробно рассматриваем проверенные методы борьбы с зависимостями, включая психотерапию, медикаментозное лечение и поддержку со стороны общества. Мы акцентируем внимание на важности комплексного подхода и возможности успешного восстановления для людей, столкнувшихся с этой проблемой.
    Наши рекомендации — тут – наркологическая клиника частный медик 24

  32. The headings made navigating the post simple even when I needed to find a specific section quickly, and a look at signalthefuture continued the same thoughtful structure, small details like clear headings show that someone is actually thinking about how the reader uses the page rather than just filling it for length alone.

  33. Reading this post made me realise I had been settling for lower quality elsewhere, and a look at actionremovesfriction extended that recalibration, content that exposes how much I had been accepting in adjacent sources is content with calibrating effect on my standards and this site is performing that calibration function across topics for me reliably.

  34. ZacheryFeage ZacheryFeage

    В этой публикации мы рассматриваем важную тему борьбы с зависимостями, включая алкогольную и наркотическую зависимости. Мы обсудим методы лечения, реабилитации и поддержку, которые могут помочь людям, столкнувшимся с этой проблемой. Читатели узнают о перспективах выздоровления и важности комплексного подхода.
    Интересует подробная информация – вывод из запоя недорого

  35. Michaelbus Michaelbus

    В этом исследовании рассмотрены методы лечения зависимостей и их эффективность. Мы проанализируем различные подходы, используемые в реабилитационных центрах, и представим данные о результативности программ. Читатели получат надежные и научно обоснованные сведения о данной проблеме.
    Это ещё не всё… – вызвать нарколога на дом

  36. RoccoPab RoccoPab

    Этот обзор содержит информацию о передовых достижениях в области медицины. Мы разберем инновационные технологии, которые меняют подход к лечению и диагностике, а также их влияние на эффективность оказания медицинской помощи.
    Интересует подробная информация – наркологическая клиника стационар

  37. Speaking from the perspective of having read widely on the topic this site offers something distinct, and a look at focusfirstapproach reinforced that distinctness, the rare site that contributes something genuinely original to a saturated topic is the rare site worth following carefully and this one has demonstrated that original contribution capability today.

  38. Solid post, the structure is easy to follow and the language stays simple even when the topic gets a bit more involved, and a look at directionbeforeforce kept that same standard going, so I left feeling like the time spent here was actually worth something for once which is rare lately.

  39. Really thankful for posts that respect a reader’s time, this one does, and a quick look at executeplansnow was the same, no need to scroll through endless intros just to get to the actual content, that approach alone is enough reason to come back here regularly for the kind of writing offered.

  40. RichardDug RichardDug

    Вывод из запоя на дому подходит, если пациент находится в сознании, согласие получено, а состояние не требует немедленной госпитализации. Врач нарколога приезжает по месту проживания, соблюдает конфиденциальности, работает аккуратно и помогает восстановить нормальное самочувствие после длительного употребления алкоголя.
    Ознакомиться с деталями – вывод из запоя в стационаре

  41. Going to share this with a friend who has been asking the same questions for a while now, and a stop at urbanriders added a few more pages I will pass along too, this is the kind of generous information that earns a small thank you from me right now and again later this week.

  42. Now thinking about how this post will age over the coming years, and a stop at visiontoexecution suggested the same durability, content built to age well rather than to capture the attention of the moment is content with a different kind of value and this site has clearly chosen the long horizon over the short one.

  43. 888starz التسجيل هي منصة مراهنات عبر الإنترنت تقدم ألعاب كازينو وخيارات رهان متنوعة للمستخدمين العرب.
    تتميز الواجهة بتصميم بسيط يسهل التنقل بين الخيارات المختلفة.

    القسم الثاني:
    تقدم 888starz تحديثات دورية تضيف محتوى جذابًا ومتغيرًا.

    القسم الثالث:
    تدعم 888starz أنظمة دفع متعددة لتسهيل المعاملات المالية.

    القسم الرابع:
    تطمح 888starz للتوسع المستقبلي وتحسين خدماتها باستمرار.

  44. Бонусная политика 888starz привлекает новых игроков и поддерживает активность постоянных клиентов.

    Для связи предусмотрены онлайн-чат, электронная почта и обширный раздел часто задаваемых вопросов.
    888 statz https://888-uz1.com

  45. ستارز ثلاث ثمانيات هي منصة مراهنات عبر الإنترنت تقدم ألعاب كازينو وخيارات رهان متنوعة للمستخدمين العرب.
    توفر المنصة واجهة سهلة الاستخدام ومزايا حديثة للمستخدمين.

    القسم الثاني:
    تقدم المنصة تشكيلة واسعة من الألعاب لتلبية مختلف الأذواق.

    القسم الثالث:
    تولي المنصة اهتمامًا كبيرًا بأمن المعاملات والبيانات الشخصية.

    القسم الرابع:
    تخطط 888starz لتطوير خدماتها وتقديم تجربة أكثر ابتكارًا للمستخدمين.

  46. Felt a small spark of recognition when the post named something I had been struggling to articulate, and a look at shadowbeast produced more such moments, the rare service of giving readers language for fuzzy intuitions is one of the higher values that good writing can provide and this site offered several today instances.

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *