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.093 Comentários

  1. Worth recommending broadly to anyone who reads on the topic, and a look at igniteforwardmotion only confirms that, the rare combination of accessibility and depth in this site makes it suitable for both newcomers and people who already know the area which is hard to pull off in any blog format today and rarely managed.

  2. More substantial than most of what I find searching for this topic online, and a stop at strategyfocus kept that quality consistent, this is one of those sites where the writing actually rewards careful reading rather than punishing the patient reader with empty filler stretched out across long paragraphs that say very little.

  3. Bookmarked the page and the homepage too because clearly there is more to explore here, and a quick stop at growtharchitected only made that more obvious, this is the kind of place I want to dig through over a weekend rather than rushing through during a coffee break tomorrow morning before getting back to work.

  4. If I were grading sites on this topic this one would receive high marks, and a stop at growthacceleratesforward continued earning those high marks, the informal grading I do mentally for content sources is something I take seriously even though it is informal and this site has been receiving consistent high marks across multiple sessions today.

  5. RichardTress RichardTress

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

  6. Reading this brought back the satisfaction I used to get from blogs ten years ago, and a stop at velvetcomplex kept that nostalgic quality alive, sites that capture what was good about an earlier era of internet writing are increasingly precious and this one is doing that without feeling like a deliberate throwback at all.

  7. Approaching this site through a casual link click and being surprised by what I found, and a look at clarityroute extended the surprise, the rare experience of stumbling into excellent independent content rather than predictable mediocrity is one of the actual remaining pleasures of casual web browsing and this site provided it cleanly.

  8. ThomascoAsp ThomascoAsp

    Публикация знакомит читателей с различными подходами к реабилитации. От традиционных методов до современных программ — вы узнаете, как выбрать оптимальный путь к выздоровлению и преодолеть препятствия на этом пути.
    Читать далее > – наркологическая клиника 24

  9. Started reading skeptically because the headline seemed overconfident, and the post earned the headline by the end, and a look at ideasneedmomentum continued that pattern of earning its claims, sites that can back up their headlines without overpromising are rare and this one has clearly developed editorial calibration on that front consistently.

  10. Picked a friend mentally as the audience for this and decided to send the link, and a look at forwardmomentumcore confirmed the send was the right choice, choosing whom to share content with is a small act of curation that I take more seriously than the public sharing most platforms encourage these days online.

  11. Working through this site has been a small antidote to the shallow content that fills most of my reading time, and a stop at progressengineon extended that antidote function, sites that quietly improve the average quality of my reading by being themselves are sites worth supporting through return visits and recommendations consistently.

  12. Started reading without much expectation and ended on a high note, and a look at learningpath continued that arc, content that builds rather than peaks early is a sign of a writer who knows how to structure a piece for sustained reader engagement rather than relying on a strong hook to do all the work.

  13. 888starz.
    تقدم 888starz تجربة شاملة للمستخدمين الباحثين عن الترفيه والمراهنات وألعاب الكازينو.

    القسم الثاني:
    تُحدّث المكتبة بانتظام لتضيف ألعابًا جديدة ومثيرة لتحقيق تجدد مستمر.

    القسم الثالث:
    تمنح المنصة عشّاق الرياضة إمكانيات مراهنة مباشرة قبل المباريات وخلالها مع تحديثات حية للنتائج.

    القسم الرابع:
    تدعم 888starz وسائل إيداع وسحب متنوعة بما يشمل بطاقات الدفع الإلكتروني والمحافظ الرقمية وخيارات محلية.

  14. 888starz تحديث
    تُعد 888starz خدمة متكاملة تركز على الألعاب الإلكترونية والترفيه وتستهدف المستخدمين الباحثين عن تجربة ألعاب آمنة وممتعة.

  15. My usual pattern is to skim and bounce but this site has reset that pattern temporarily, and a stop at directionpowersresults maintained the slower reading mode, content that changes how I read is content with structural influence and this site has clearly nudged my reading behaviour toward something better at least for the duration of these visits.

  16. Now appreciating the small but real way this post improved my afternoon, and a stop at momentumbychoice extended that small improvement effect, content that produces measurable positive impact on the texture of a reading day is content with real value and this site is producing those small positive impacts at a sustainable rate apparently.

  17. I really like the calm tone here, it does not push anything on the reader, and after I went through nexustower I felt the same way, just steady useful content laid out without drama, which is exactly what someone trying to learn something quickly needs to find rather than aggressive marketing.

  18. Stands out for actually being useful instead of just being long, and a look at quantumvista kept that going, length without value is the default mode of most blogs these days but this site has clearly chosen a different path which I respect a lot as a reader who values careful editing decisions like that.

  19. تحميل كازينو 888
    تعرّف منصة 888starz على نفسها كموقع رائد في عالم الألعاب والترفيه عبر الإنترنت.

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

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

    القسم الرابع:
    تدعم 888starz وسائل إيداع وسحب متنوعة بما يشمل بطاقات الدفع الإلكتروني والمحافظ الرقمية وخيارات محلية.

  20. Felt the writer respected me as a reader without making a show of doing so, and a look at clarityguidesexecution continued that quiet respect, this is the kind of small but meaningful detail that separates the sites I bookmark from the ones I close after a single skim and never return to again no matter how interesting the headline.

  21. Taking the time to read carefully here has been worthwhile for the past hour, and a look at ideasneedmomentum extended the worthwhile reading, the calculation of return on reading time spent is something I do informally and this site has been producing positive returns across multiple sessions during the last week of regular visits and reads.

  22. Just nice to read something that does not feel like it was assembled from a content brief, and a stop at focuscreatesflow kept that handcrafted feel going, you can tell when a real human with real understanding is behind the words versus a templated piece churned out for an algorithm to find.

  23. A quiet piece that did not try to compete on volume, and a look at focusandexecute 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.

  24. Speaking from the perspective of a fairly demanding reader the writing here clears the bar consistently, and a look at igniteforwardmotion continued clearing that bar, the calibration of demanding reader is something I apply to all sources and this site has been one of the few that handles the demanding reading well across pieces sampled.

  25. Useful enough to recommend to several people I know who would appreciate it, and a stop at progresswithcontrol added more material I will pass along too, the kind of writing that earns word of mouth is the kind that actually delivers on its promises which is what this site does without any drama or fanfare attached.

  26. Better signal to noise ratio than most places I check on this kind of topic, and a look at clarityleadsaction kept that going, every paragraph here carries something worth reading rather than padding out the page to hit some arbitrary length target that search engines reward but readers ignore as soon as they notice it.

  27. Skipped the TLDR thinking I would read everything anyway, and ended up enjoying the path through the full post, and a stop at broadcastnova similarly rewarded the patient read, summaries are useful but the journey through good writing is part of what makes the destination feel earned rather than just delivered cleanly.

  28. ThomascoAsp ThomascoAsp

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

  29. Picked up on several small touches that suggest a careful editor, and a look at momentumdesignlab suggested the same hand at work across the broader site, editorial consistency at a granular level is one of the strongest signs that an operation is serious rather than just hobbyist and this site reads as serious throughout.

  30. Considered against the flood of similar content this one stands apart in important ways, and a stop at actiondrivenshift extended that distinctive feel, sites that find their own corner of a crowded topic and stay there are sites worth following and this one has clearly carved out its own space and committed to defending it carefully.

  31. A piece that did not lean on the writer credentials or institutional backing, and a look at happycradle maintained the same focus on substance, content that earns trust through quality rather than through name dropping is the kind I find most persuasive and this site is clearly playing on the substance side of that distinction.

  32. A genuine compliment to the writer for keeping the post focused on what mattered, and a look at ideasintomomentum continued that disciplined focus, focus is a editorial choice that compounds across many small decisions and this site has clearly made those small decisions consistently across what I have read so far this week here.

  33. A piece that left me thinking I had been undercaring about the topic, and a look at ideasguidedforward reinforced that mild concern, content that raises the appropriate weight of a subject without being preachy about it is doing important work and this site is providing that gentle elevation of attention for me consistently.

  34. Glad I gave this a chance rather than scrolling past, and a stop at actionfeedsmomentum confirmed I made the right call, sometimes the best content is hidden behind unassuming headlines that do not scream for attention and learning to slow down and check those out has paid off many times now across years of reading.

  35. يستند 888starz إلى ترخيص دولي معتمد يكفل الشفافية وأمان معاملات كل لاعب.

    يمكن للاعبين خوض جلسات كازينو مباشر بموزعين فعليين وبثّ عالي الجودة في أي وقت.

    يقدم 888starz تغطية لأهم الأحداث من كأس العالم إلى الدوريات المحلية المصرية.

    يطرح الموقع عروضًا مستمرة تشمل كاش باك أسبوعيًا ورهانات مجانية وبطولات سلوت.

    تتم عمليات السحب بسرعة مع معالجة المحافظ الإلكترونية خلال دقائق في الغالب.

    888starz https://aclknights.com/

  36. يتوفر الموقع باللغة العربية مع تصميم بسيط يلائم اللاعبين في مصر.
    تظهر ماكينات السلوت الرائجة والإصدارات الجديدة بشكل بارز على الموقع الرسمي.
    يتيح الموقع الرسمي الرهان على ما يزيد عن 50 نوعًا رياضيًا تغطي أبرز الأحداث العالمية.
    888starz https://bbhscanners.com/
    يستعرض الموقع الرسمي كل العروض في مكان واضح يسهل الوصول إليه.
    يتوفر فريق خدمة العملاء 24/7 بالعربية والإنجليزية من خلال المحادثة المباشرة والبريد الإلكتروني.

  37. اكتسب تطبيق 888starz شعبية واسعة لدى مستخدمي الأجهزة المحمولة في مصر.
    888starz تحميل https://theracingbicycle.com/
    يكتمل تثبيت التطبيق سريعًا ليتمكن المستخدم من فتحه مباشرة بعد ذلك.
    يتوافق إصدار أندرويد مع معظم الهواتف بما فيها ذات المواصفات البسيطة.
    الحفاظ على تحديث التطبيق بانتظام يساعد على سد أي ثغرات ويرفع مستوى الأمان.
    يدعم 888starz أجهزة iOS ليتمكن مستخدمو الآيفون من تثبيت التطبيق بسهولة.

  38. يُعد الموقع الرسمي 888starz في مصر منصة رائدة للكازينو والرهانات الرياضية تجمع كل الخدمات في مكان واحد.
    تتوفر أكثر من 300 طاولة كازينو مباشر بموزعين حقيقيين تعمل على مدار الساعة.
    888starz https://free-credits-report.com/
    يمكن الرهان على بطولات كبرى من الدوري الإنجليزي إلى أهم البطولات في مصر.
    يستعرض الموقع الرسمي كل العروض في مكان واضح يسهل الوصول إليه.
    يمكن التسجيل في الموقع الرسمي عبر الهاتف أو البريد الإلكتروني أو بنقرة واحدة خلال دقائق.

  39. يتوفر ملف apk لتطبيق 888starz للتحميل المباشر على هواتف أندرويد بسهولة.
    888starz تحميل https://theracingbicycle.com/
    لا تستغرق عملية التثبيت سوى دقائق معدودة حتى يصبح التطبيق جاهزًا للاستخدام.
    يعمل التطبيق بكفاءة حتى على الأجهزة ذات الإمكانيات المتوسطة دون تأخير.
    من الأفضل تنزيل ملف apk من الموقع الرسمي لتفادي الملفات غير الموثوقة.
    يوفر إصدار iOS تجربة سلسة ومستقرة مماثلة لإصدار أندرويد.

  40. Really grateful for content like this, it does not waste my time and it does not insult my intelligence either, and a quick look at actionfeedsprogress was the same, balanced respectful writing that makes a person feel welcome rather than rushed through pages of forced engagement just to keep clicking around.

  41. يجمع 888starz في مصر بين عالم الكازينو والمراهنات الرياضية ضمن منصة واحدة متكاملة.

    تتيح غرف الكازينو الحي تجربة واقعية مع موزعين محترفين تعمل طوال اليوم.

    يقدم 888starz تغطية لأهم الأحداث من كأس العالم إلى الدوريات المحلية المصرية.

    تنتظر المستخدم الجديد باقة ترحيبية مجزية قد تصل إلى 1500 دولار مع فري سبين عند أول إيداع.

    يضمن الموقع دفعات سريعة تصل عبر الكريبتو والمحافظ الرقمية دون تأخير يُذكر.

    888starz https://aclknights.com/

  42. Youre so cool! I dont suppose Ive read anything like this before. So nice to find anyone with some unique ideas on this subject. realy thank you for beginning this up. this website is something that is needed on the internet, somebody with just a little originality. useful job for bringing one thing new to the web!

  43. Hello! I’m at work browsing your blog from my new apple iphone! Just wanted to say I love reading your blog and look forward to all your posts! Keep up the excellent work!

  44. يُعد تطبيق 888starz من أكثر التطبيقات طلبًا بين مستخدمي الهواتف الذكية في مصر.
    888starz تحميل https://theracingbicycle.com/
    لا تستغرق عملية التثبيت سوى دقائق معدودة حتى يصبح التطبيق جاهزًا للاستخدام.
    يُنصح بتحديث ملف apk فور صدور نسخة جديدة للاستفادة من آخر التحسينات.
    الحفاظ على تحديث التطبيق بانتظام يساعد على سد أي ثغرات ويرفع مستوى الأمان.
    يتميز تطبيق الآيفون بثبات الأداء وتصميم متوافق مع شاشات iOS.

  45. يمكن تنزيل ملف apk الخاص بالتطبيق مباشرة على أجهزة أندرويد بخطوات بسيطة.
    888starz تحميل https://theracingbicycle.com/
    يتم تثبيت التطبيق بمجرد فتح ملف apk والموافقة على خطوات التثبيت.
    يُنصح بتحديث ملف apk فور صدور نسخة جديدة للاستفادة من آخر التحسينات.
    من المهم فحص الأذونات المطلوبة قبل تثبيت التطبيق على الهاتف.
    يتوفر تطبيق 888starz أيضًا لأجهزة آيفون بنظام iOS بنفس سهولة الاستخدام.

  46. Now placing this in the same category as a few other sites I have come to trust, and a look at brightdwelling continued the placement decision, the small category of fully trusted sites is one I extend rarely and only after multiple positive reading sessions and this site has earned the category placement methodically over time.

  47. 888starz تحميل https://trurofoodfestival.com/
    لا يشغل ملف apk مساحة كبيرة ويعمل بسلاسة على معظم إصدارات أندرويد.

    يتطلب أندرويد السماح بالمصادر الخارجية في الإعدادات قبل فتح ملف apk.

    يتوافق التطبيق مع معظم إصدارات أندرويد ويُحدَّث دوريًا دون تدخل المستخدم.

    يحمي 888starz حساب اللاعب بطبقات أمان تشمل التحقق والتشفير.

    يتم التثبيت على iOS بخطوات مباشرة دون الحاجة إلى إعدادات معقدة.

Deixe um comentário

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