I've recently had an interview for an embedded C software position where the interviewer asked which type of Microcontrollers I am most familiar with - from TI, NXP, STMicroelectronics etc.?
I mentioned that I have used NXP MCUs quite a bit in the past. They then asked if I have any experience with TI chips.
I struggle a bit to understand why it's so important to know if one has experince with a particular MCU from a particular vendor.
When we're developing applications in embedded C (or C++), aren't we mostly abstracted from the platform-specific stuff? Unless we are writing bootloaders from scratch and of course drivers.Changing platforms shouldn't be a major issue right?
What are other major benefits of someone being used to working with MCUs from one particular vendor? Thanks in advance.
It's not very important, though in case you are familiar with one particular microcontroller, you can "hit the ground running" so to speak. Meaning it is often a merit during employment, more so than a hard requirement. In the ARM era, this is even less important and it's more about which tool chains you are used with.
And naturally, experienced programmers pick up new tool chains and new microcontrollers much faster than beginners who have no idea how things are usually done. So IMO past microcontroller experience is more relevant when hiring junior devs. For example you don't want to make the mistake of hiring someone who has only used Arduino (not really a merit) and then toss them into a bare metal MSP430 project. I would imagine that your interviewer has similar thoughts.
Not really, since bare metal/RTOS microcontroller applications are very low level and close to the hardware. Having experience with various oddities and hardware peripherals saves time. A whole lot of embedded programming isn't related to C.
RL anecdote from today: I've spent my whole day troubleshooting why a ATSAM MCU wouldn't start without the debugger attached. Having ruled out the watchdog, BOD, reset pin, the ICD itself, supply voltage and using a RAM build by mistake, experience from using Cortex M eventually sent me digging into the CRT and I concluded that it was an issue with wrong linkage of the whole vector table. Nasty problem that took me 5 hours to solve including poking support.
A beginner who barely knows what a vector table is wouldn't even know where to start troubleshooting something like this. They would perhaps sit and stare into the C code indeed, though nothing of this problem was the slightest related to C programming. I had to read a bit of assembler, though most of the troubleshooting involved poking around with an oscilloscope and an ICD, as well as viewing the board in the PCB CAD. All part of an embedded programmers job.