Purchased a Zero .. having issues w/serial communication
loaded SerialEvent example
when using programming USB port note activity w/ keystrokes e.g. debug LED flashes but no chars sent to serial monitor.
modified code to address SerialUSB and connected via native port .. still no response in serial monitor
attempted to debug via Atmel Studio .. same .. though I'm aware there is some conflict w/ port assigns w / debug and serial com, I've tried various debug com settings with no success ..
attempted stand alone terminal emulator .. same ..
I've noted a number of discussions in the forum w/ regard to difficulties w/ serial ports on Zero .. unfortunately it seems if folks have found a resolve ... they've not made it known (leastwise I've yet to find it)
It seems unlikely that serial would be completely broken on Zero.
What are you using to send serial data? It looks like the SerialEvent example doesn't actually send anything until it receives a newline ("\n" - linefeed - ctrl-J) - are you actually sending a linefeed? Most terminal emulators will send return ("\r" - ctrl-M) when you hit the enter key, and the Arduino "Serial Monitor" defaults to not sending any line terminator at all...