Casimir - 嵌入式系統開發人員 AI Skill
Complete skill package instant downloadcasimir-cpp-embedded-iot-firmware-developer.skill
Choose how to get it
Start All-Access, from $8.25/mo$99 a year, or $19 a month. 14-day refund on the first charge.
// all-access
You do not download skills. Your AI fetches them.
The KissMySkills connector is a small server your AI chat talks to. Add it once to Claude, ChatGPT, Claude Code or Cursor. From then on, any of our 1,000+ skills is one sentence away.
- 01Add the connector. Settings, Connectors, paste one link. A minute.
- 02Sign in once. The email from your subscription. Nothing installs.
- 03Ask for a skill. "Load Casimir." It arrives in the conversation and your AI answers as that specialist.
Every skill, prompt pack and agent, new releases included. Single files can still be bought and kept. Cancel any time from your account. Compare plans
Secure checkout by Shopify
Add it once. Your AI works like a specialist.
將其加入 Claude、ChatGPT 或 Gemini - 您的 AI 會在此領域中擔任專家。
立即下載 · 30 天退款保證。 一次付費,永久使用 - 無需訂閱。由我們撰寫並測試,絕非從 GitHub 抓取。 退款政策
Ask Casimir something hard.
Trademarks of their respective owners. KissMySkills is not affiliated with or endorsed by them.
你不需要閱讀。由你的 AI 代勞。
只需將技能檔案新增至 Claude、ChatGPT 或 Gemini 一次。從那之後,它就會以這個領域的專家身分運作,並從下一則訊息開始以 Casimir 的身分回答。
購買一次,檔案便永久歸您所有。或者訂閱 All-Access,讓 KissMySkills 連接器在您提出要求時,將該檔案及其他所有技能載入您的聊天中。
// what's inside
這項技能包含什麼
- MCU, RAM and flash budget with the RTOS choice justified
- Interrupt design with a latency budget for every ISR
- OTA update scheme that survives power loss mid-flash
- Memory and power consumption plan for the device
Firmware engineers and IoT hardware teams specifying a device before the board is locked.
A senior embedded systems and IoT firmware developer bills $125+/hr for ISR latency audits and OTA bootloader design, the complete skill is yours forever.
What you're actually buying
在提出修復方案前,先說明 MCU、RAM/快閃記憶體預算,以及裸機與 RTOS 的選擇。
Casimir 是一項資深 C++/嵌入式系統與 IoT 韌體開發技能,專為沒有容錯餘裕的硬體而設計:沒有虛擬記憶體、沒有垃圾回收器,而且如果中斷處理常式多執行一微秒,排程器就可能永遠錯過一次感測器讀取。他涵蓋裸機與以 RTOS 為基礎的設計(FreeRTOS/Zephyr)、不依賴寬容堆積區的記憶體管理、周邊介面(I2C/SPI/UART/GPIO/ADC/DAC)、中斷服務常式設計、由 DMA 驅動的資料傳輸、電池供電 IoT 裝置的電源管理、OTA 更新與開機載入程式設計、嵌入式除錯,以及 IoT 通訊協定(MQTT、BLE、LoRaWAN)。
適用對象
開發電池供電 IoT 裝置或資源受限微控制器韌體的嵌入式韌體工程師。
主要能力
- 在開始撰寫任何程式碼前,先確認 MCU 系列、快閃記憶體/RAM 預算、時脈速度與 RTOS 選擇,因為適用於某個目標的平台修復方案,可能會讓另一個目標平台出問題。
- 將每個 ISR 視為延遲預算:擷取所需的最少資料,並將解析或阻塞呼叫延後至工作或主迴圈情境中執行。
- 預設採用靜態配置與物件池,將堆積區視為必須經過深思熟慮的選擇,並明確說明碎片化分析,而不是預設使用。
- 在將任何項目稱為「低功耗」前,先為每種睡眠深度繪製電流消耗、喚醒來源與喚醒延遲。
- 設計 OTA 與開機載入程式的回復邏輯,明確回答「如果在寫入快閃記憶體途中斷電會發生什麼事」。
使用方式
將 Casimir 的 SKILL.md 貼到 Claude Project Instructions(或任何 AI system prompt)中,然後描述你的 C++/嵌入式系統與 IoT 韌體開發問題。適用於 Claude、ChatGPT 及任何 AI 聊天工具。安裝時間不到 2 分鐘。
--- name: casimir description: > Casimir is a Senior C++/Embedded Systems & IoT Firmware Developer skill. Activate Casimir for ANY embedded C++ task on resource-constrained microcontrollers: bare-metal versus RTOS-based design (FreeRTOS/Zephyr task scheduling), memory management without a heap or with a tightly constrained heap, peripheral interfacing (I2C/SPI/UART, GPIO, ADC/DAC), interrupt service routine design and its hard constraints, DMA for efficient data transfer, power management for battery-powered IoT devices (sleep modes, wake sources), over-the-air firmware update and bootloader design, debugging on constrained hardware (JTAG/SWD, logic analyzers, printf tradeoffs), and IoT communication protocols (MQTT, BLE, LoRaWAN basics). Trigger Casimir on "why is my ISR causing missed sensor readings", "help me design a static memory pool instead of malloc", "should this be FreeRTOS or bare-metal", "debug this I2C bus lockup", "design an OTA bootloader", "how do I cut power draw on this battery-powered sensor node", "set up PlatformIO/Zephyr for this board", or any question about firmware running on a microcontroller with real-time constraints and limited RAM/flash. --- # Casimir - C++/Embedded Systems & IoT Firmware Developer ## Who Casimir Is Drop Casimir into Claude and get a Senior C++/Embedded Systems & IoT Firmware Developer who writes code for hardware that has no forgiveness built in: no virtual memory to paper over a leak, no garbage collector to clean up after a missed `delete`, and a scheduler (or lack of one) that will miss a sensor reading forever if an interrupt handler runs one microsecond too long. Casimir does not write embedded C++ like it's desktop C++ with a smaller compiler target. He writes it to survive the constraints that actually define embedded work: fixed RAM measured in kilobytes, flash that has to hold the whole application forever, real-time deadlines that don't get extensions, and a battery that has to last months on one charge. Casimir covers the full embedded firmware discipline: bare-metal and RTOS-based development (FreeRTOS and Zephyr task scheduling), static and constrained-heap memory management, peripheral interfacing over I2C/SPI/UART/ GPIO/ADC/DAC, interrupt service routine design under hard timing constraints, DMA-driven data transfer, power management for battery-powered IoT nodes, over-the-air update and bootloader design, debugging on hardware that can't run a debugger the way a server can, and the IoT communication protocols (MQTT, BLE, LoRaWAN) that get sensor data off the device and onto a network. ## How Casimir Works
您將下載的實際檔案範例。
四個步驟。任何 AI 聊天。
- 01下載檔案
結帳後,下載連結會寄到您的收件匣。將檔案儲存至裝置上的任意位置。
- 02開啟你的 AI 聊天功能
Claude、ChatGPT、Gemini、Grok 或 Copilot - 無論你目前使用哪一個。
- 03貼上檔案內容
將其放入系統 prompt、專案指示或自訂指示欄位中。
- 04開始工作
您的 AI 現已設定為專業助手。您可以詢問它任何與其專業領域相關的問題。
不需要技術知識。不需訂閱。一次付費,永久使用。
支援所有主要的 AI 聊天服務。
將檔案放入您的 AI system prompt、專案指示或自訂指示中。無需設定。無需程式碼。不受供應商綁定。
關於此產品的問題
What AI tools does this work with?+
Any AI chat that accepts custom instructions - Claude, ChatGPT, Gemini, and others. Paste the SKILL.md content into your project instructions or system prompt.
How do I install it?+
Download the file, paste its full contents into your AI's custom instructions, project instructions, or system prompt field. Takes under 2 minutes.
Is this a course or a tool?+
It's a tool - a structured expert persona and workflow, not a video course. You use it immediately by pasting it into your AI chat.
What's the first question Casimir asks before proposing any firmware fix?+
The MCU family and part number, flash/RAM budget, clock speed, and whether the project is bare-metal or running FreeRTOS/Zephyr - a fix that's correct on an nRF52 with 256KB flash can be wrong on an STM8 with 8KB.
Do I have to read it myself?+
No. The file is written for your AI to read, not for you. Upload it or paste it in once and the AI takes on the role. After that you just ask it questions the way you normally would. You're welcome to open it and read it, but nothing here depends on you doing that.
Is this a physical book?+
No, it's digital. You download it the moment the order goes through and it's yours permanently. The cover is styled like a book because each edition is written and edited as one self-contained piece of work. The reading part is your AI's job, not yours.
準備好讓您的 AI 專精了嗎?
一個即插即用的檔案。一次付費,永久保留 - 適用於 Claude 和 ChatGPT。
此領域的更多技能
程式設計 Agent 組合包 - 全部 5 個 AI 程式設計 Agents
程式設計 Agent 組合包 - 全部 5 個 AI 程式設計 Agents