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

  1. GeorgeNus GeorgeNus

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

  2. Picked this up between two other things I was doing and got drawn in completely, and after progressneedsstructure my original tasks were completely forgotten for a while, content that derails a workflow in a positive way by being more interesting than what you were already doing is rare and worth recognising clearly.

  3. Felt mildly happier after reading, which sounds silly but is true, and a look at focusconstructor extended that small mood lift, content that improves rather than degrades my mental state is content I want more of and the cumulative effect of reading sites that lift versus sites that drag is real over time.

  4. 888starz O’zbekiston uchun kazino o’yinlari va sport tikishlarini qamrab olgan to’liq funksional platformani ochadi.
    888starz uz 888starz uz.
    Kazino bo’limida Evolution, Evoplay, Spade Gaming, Smartsoft va boshqa provayderlardan minglab slotlar mavjud.
    Sayt jahon ligalaridan tortib mahalliy musobaqalargacha keng qamrovli tikish yo’nalishlarini taklif etadi.
    Yangi o’yinchilar birinchi depozitga +100% bonus oladi — 1500€ gacha va 150 bepul aylantirish.
    888starz hisobini yaratish bir necha oddiy qadamda va qisqa vaqtda bajariladi.

  5. 888starz rasmiy platformasi o’zbek tilini qo’llab-quvvatlaydi va sodda dizaynga ega.

    888starz rasmiy sayti slot, ruletka va blekjek kabi mingdan ortiq kazino o’yinini taklif etadi.

    Rasmiy sayt orqali mahalliy va xalqaro chempionatlarga, jumladan O’zbekiston ligasiga tikish mumkin.

    888starz uz https://archevore.com/

  6. 888starz O’zbekiston bozori uchun to’liq kazino va bukmeker xizmatlarini bir joyda jamlaydi.
    Sayt TV o’yinlari va mashhur Aviatorni tez natija istovchilar uchun taklif etadi.
    888starz uz 888starz uz
    888starz o’nlab sport turlariga — futboldan kibersportgacha — tikishni taqdim etadi.
    888starz doimiy promolar, keshbek va slot musobaqalari bilan o’yinchilarni qo’llab-quvvatlaydi.
    888starz 24/7 mijozlarga yordamni jonli chat orqali taqdim etadi.

  7. Great blog here! Additionally your website rather a lot up very fast! What host are you the usage of? Can I get your associate link for your host? I desire my website loaded up as fast as yours lol

  8. Now appreciating the way the post avoided the temptation to be longer than necessary, and a look at executeplansnow continued that lean approach, content with the discipline to stop when finished rather than padding for length is content that respects both itself and its readers and this site has that disciplined editorial culture clearly throughout.

  9. Worth flagging that the writing rewarded a second read more than I expected, and a look at ideapathfinder produced the same second read benefit, content with hidden depths that emerge only on careful rereading is rare in the modern blog space and this site has clearly invested in that level of compositional density throughout.

  10. 888starz o’zbek tilidagi tushunarli interfeysga ega bo’lib, barcha bo’limlarga oson kirishni ta’minlaydi.
    888starz https://oerknal.org/
    Rasmiy saytda jonli kazino va faqat 888starzga xos 888Games o’yinlari alohida o’rin egallaydi.
    888starz futbol, tennis, basketbol va kibersportni o’z ichiga olgan keng sport yo’nalishlarini qamrab oladi.
    Depozit vaqtida 888UZ777 kodi kiritilsa, o’yinchi to’liq xush kelibsiz bonusiga ega bo’ladi.
    Sayt bank kartalari, elektron hamyonlar va kriptovalyutalar orqali to’lovlarni qabul qiladi.

  11. Reading this on a difficult day was a small bright spot, and a stop at claritybeforecomplexity extended that brightness, content that improves a hard day is content that has earned a particular kind of place in my reading habits and this site is occupying that uplifting role for me today which I appreciate clearly.

  12. Now sitting back and recognising that this was a small but real win in my reading day, and a stop at actioncreatesmomentum extended that quiet win, the cumulative effect of small reading wins versus the cumulative effect of small reading losses is real over time and this site is contributing to the wins side of that ledger.

  13. Closed and reopened the tab three times before finally finishing, and a stop at progressmovesintentionally held my attention straight through, sometimes content fights for time against my own distraction and the times it wins say something positive about its quality and this post clearly won that fight today afternoon for me.

  14. Top notch writing, every paragraph carries weight and nothing feels like filler, and a stop at motionbeatsmotionless reflected that same care, a rare thing on the open web these days where most pages exist for clicks rather than actual reader value or anything close to that which is honestly a real shame.

  15. A quiet kind of confidence runs through the writing, and a look at studyharbor carried that same understated assurance, confidence without bragging is the most attractive register for online writing and the writers here have clearly developed it through practice rather than affecting it through stylistic tricks that would feel hollow eventually.

  16. Started reading without much expectation and ended on a high note, and a look at signalbasedgrowth 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.

  17. Stayed longer than planned because each section earned the next, and a look at progressstarter kept that pulling effect going across more pages, the kind of subtle pull that good writing exerts on attention is something I find harder and harder to resist when I encounter it on the open web today.

  18. I learned more from this short post than from longer articles I read earlier today, and a stop at actionwithclarityfirst added even more useful detail without going off topic, this site clearly knows how to keep things focused without sacrificing depth which is a hard balance to strike for any writer.

  19. Now feeling confident that this site will continue producing work I will want to read, and a look at progresswithdiscipline extended that confidence into the future, projecting forward from current quality to expected future quality is something I do for sites I genuinely follow and this one has earned that forward looking trust clearly today.

  20. ThomascoAsp ThomascoAsp

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

  21. Reading this brought back the satisfaction I used to get from blogs ten years ago, and a stop at growthmoveswithfocus 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.

  22. A quiet kind of confidence runs through the writing, and a look at executionpathway carried that same understated assurance, confidence without bragging is the most attractive register for online writing and the writers here have clearly developed it through practice rather than affecting it through stylistic tricks that would feel hollow eventually.

  23. Worth flagging that this approach to the topic is fresh without being contrarian, and a stop at visionguidesmotion extended the same fresh angle, finding original perspective on familiar subjects is rare and this site has clearly developed its own way of seeing rather than echoing the dominant takes from elsewhere consistently.

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

  25. Now considering writing a longer note about the post somewhere, and a look at directionenablesmomentum added more material for that note, content that prompts me to write rather than just consume is content with generative energy and this site is producing that generative effect for me at a higher rate than most sources.

  26. 888starz تحميل https://trurofoodfestival.com/
    يتيح 888starz لمستخدمي مصر تطبيقًا للجوال يجمع الكازينو والرهان الرياضي في مكان واحد.

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

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

    يعتمد التطبيق تشفيرًا لحماية بيانات الحساب والمعاملات المالية.

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

  27. 888starz Android va iOS qurilmalari uchun mobil ilovani taklif etadi va istalgan joydan o’ynash imkonini beradi.
    888starz uz https://oerknal.org/888starz-platformasida-futbol-va-kazino-boyicha-stavkalar-qanday-qoyiladi/888starz
    Rasmiy saytda Evolution, Spade Gaming, Smartsoft va Spinthon studiyalaridan keng slot to’plami jamlangan.
    Foydalanuvchilar jonli stavka orqali o’yinlar ketayotgan paytda tikish va natijalarni kuzatish imkoniga ega.
    Bonusni to’liq olish uchun ro’yxatdan o’tishda 888UZ777 promokodidan foydalanish tavsiya etiladi.
    888starz depozit va yechib olish uchun karta, hamyon va kripto kabi turli usullarni taklif etadi.

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

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

  30. Going to come back when I have more time to read carefully, the post deserves more than a quick scan, and a stop at claritydrivenpath reinforced that, this is the kind of site that rewards a slower read which is hard to find in this fast paced corner of the internet but really worthwhile.

  31. A welcome contrast to the loud takes that have dominated my feed lately, and a look at ideasneedactivation extended that calm voice, content that arrives without yelling has become unusual in the modern attention economy and this site is one of the few places I have found that consistently delivers without raising its voice.

  32. Sayt to’liq o’zbek tilida ishlaydi va sodda, tez interfeys bilan foydalanishga qulay.
    888starz uz https://oerknal.org/
    888starz TV o’yinlari va Aviator kabi crash-o’yinlarni yagona bo’limda birlashtiradi.
    888starz futbol, tennis, basketbol va kibersportni o’z ichiga olgan keng sport yo’nalishlarini qamrab oladi.
    Bundan tashqari saytda keshbek, bepul stavkalar va muntazam turnirlar doimiy ravishda o’tkaziladi.
    888starz mijozlarni qo’llab-quvvatlash xizmati kun davomida bir nechta aloqa kanali orqali javob beradi.

  33. Closed several other tabs to focus on this one as I read, and a stop at actionclarifiespath held my undivided attention the same way, content that earns full focus in an attention environment full of competing pulls is content doing something genuinely well and the team behind it deserves recognition for that achievement consistently.

  34. Marvinfoors Marvinfoors

    Нарколог на дом в Казани — это срочная медицинская помощь пациенту при запое, похмелья, интоксикации, абстинентного синдрома, наркотической ломки и других ситуациях, когда человеку сложно самостоятельно обратиться в клинику. Врач приезжает на дом, проводит осмотр, диагностику состояния, подбирает препараты, ставит капельница и дает рекомендации по дальнейшему лечению зависимости.
    Разобраться лучше – [url=https://narkolog-na-dom-kazan24.ru/]запой нарколог на дом в казани[/url]

  35. Now setting this aside as a model of how to write thoughtfully on the topic, and a stop at progresswithsignalpath extended that model status, content that becomes a reference for how a kind of writing should be done is content with influence beyond its own readership and this site is reaching that level for me clearly today.

  36. Took the time to read the comments on this post too and they were also worth reading, and a stop at focustrajectory suggested the community quality matches the content quality, when the conversation around a piece is as good as the piece itself you know you have found a real corner of the internet.

  37. Richardeffic Richardeffic

    Запоя лечение в клинике Сочи: вывод из запоя на дому, помощь нарколога, капельница, детоксикация, стационар, кодирование алкоголизма и реабилитация.
    Изучить вопрос глубже – вывод из запоя вызов на дом сочи

  38. Came in for one specific question and got answers to three I had not even thought to ask, and a look at focusdrivenresults extended that bonus value pattern, the kind of resource that anticipates reader needs rather than just answering the literal question asked is the gold standard and this site reaches it.

  39. Now adding the writer to a small mental list of voices I want to follow, and a look at forwardenergyflow reinforced that follow intention, the few writers whose work I actively track are writers who have demonstrated sustained quality and this writer has clearly demonstrated that sustained quality across the pieces I have sampled here today.

  40. Most attempts at writing on this topic feel like they are missing something and this post finally identified what was missing, and a look at claritybridge extended that diagnostic clarity, content that names what is wrong with adjacent treatments while doing better itself is content with both critical and constructive value and this site has both.

  41. Considered alongside other sources I have been reading this one consistently rises to the top, and a stop at ideasneedvelocity 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.

  42. Took the time to read every paragraph rather than skimming for the punchline, and a quick visit to clarityoveractivity earned the same careful attention from me, that is the highest signal I can give about content quality because my default mode is rapid scanning rather than deliberate reading on most pages.

  43. A clean read with no irritations, and a look at progresswithforwardintent continued that frictionless quality, the absence of small irritations is something I notice only when present elsewhere and this site is one of the rare places where everything just works and lets me focus on the substance rather than fighting the format.

  44. A relief to read something where I did not have to fact check every claim mentally, and a look at directionsharpensfocus continued that reliable feeling, sites where I can lower my guard and trust the content are rare and this one is earning that trust paragraph by paragraph through consistent careful work behind the scenes.

  45. Now recognising the post as a rare example of careful writing on a topic that mostly receives careless treatment, and a stop at actionintoprogress extended that contrast with the average elsewhere, content that highlights how much the average is settling for low quality is content that has both internal merit and external value as a benchmark.

  46. Reading this slowly to give it the attention it deserved, and a stop at clarityfirstaction earned the same slow read, choosing to read slowly is a small act of respect for content quality and very few sites earn that respect from me but this one did so without any explicit ask which is the cleanest way.

  47. This one is staying open in a tab for the rest of the day so I can come back and re read certain parts, and a look at growthinmotion suggests I will be doing the same with a few more pages here too, this is going to be a deep dive over the coming hours.

Deixe um comentário

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