N
N
next_page_my2017-10-08 13:19:36
Programming
next_page_my, 2017-10-08 13:19:36

What does it mean in programming: to study at the level of hardware, or at the level of software?

I heard it many times, but I did not find a specific definition, can you explain?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
1
15432, 2017-10-08
@next_page_my

At the level of hardware - implemented in the low-level firmware of the device or in general in hardware, in the form of non-flashable microcircuits. For example, a USB transceiver that converts a data packet to 8b/10b bit encoding. Change is difficult or impossible.
At the software level - implemented programmatically in a driver or application that interacts with the device.
For example, copying a file to a USB flash drive. It's easy to change - recompile the program.
sorry, I read your question on how to "change"
learning at the software level - figure out how to work with this garbage in order to be able to use it yourself, but not delve into the internal structure of the work, which you do not need to use.
learning at the level of iron - to understand exactly how the device works, to get to the lowest possible level in order to be able to create the same thing.
for example, to copy a file to a USB flash drive, you just need to learn how to work with fopen(), fwrite(), fclose() - this is the software level.
To understand how recording is actually done on a USB flash drive and create your own USB flash drive, you need to know how NAND works, what you need to connect and transfer via USB, what types of packages there are, the package format, up to writing your own firmware

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question