How about this arduino Mega hack

hi, I have a plan of buying an arduino mega, but not to destroy it's beauty, I wanna make it smaller, but the plan, is to use everything I need in the real board but just make it smaller(change the schematics maybe) everything will be coming from the real board, just wanna make it smaller,

now here comes the question.

Can I still use the arduino IDE?

If you are just changing the physical form factor, the IDE would not know the difference.

If you change other things, like the clock frequency or pin assignments, you would have to define your own "board" to the IDE. Then it would be a different selection in the IDE Boards menu.

thanks I think I don't need to change the pin assingments just reduce the number of pins to make it smaller, do you think I could still use the arduino IDE.

jhave_21:
do you think I could still use the arduino IDE.

If you are using an Atmega2560 microprocessor with an Arduino bootloader you can use the Arduino IDE. Indeed you can use the IDE even if there is no bootloader if you can connect to it to program it using ICSP.

As @-dev has said the IDE uses a boards file that assumes a particular mapping between the physical I/O pins on the chip and the I/O pins on the Arduino Mega board. If you want to change that relationship you would need to write a new file with the your relationships.

If all you want to do is omit several pins then as long as your program does not try to use the missing pins there should be no need to change anything.

...R